Skip to content

Instantly share code, notes, and snippets.

@epifanio
Created November 14, 2019 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save epifanio/92293fd5f0b026669c762d70e45f725e to your computer and use it in GitHub Desktop.
Save epifanio/92293fd5f0b026669c762d70e45f725e to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# WoRMS validation"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"import pandas as pd"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"from fuzzyutil import *"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"pd.set_option('display.max_rows', 1000)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"df = pd.read_csv('names_v4.csv', encoding='latin1')"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Unnamed: 0</th>\n",
" <th>Taxonomy</th>\n",
" <th>freq</th>\n",
" <th>last_seen</th>\n",
" <th>To_name</th>\n",
" <th>Status</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1</td>\n",
" <td>Epizooanthidae</td>\n",
" <td>1</td>\n",
" <td>107</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>Lebensspuren (echinoderm bulldozing tracks)</td>\n",
" <td>1</td>\n",
" <td>112</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>3</td>\n",
" <td>Paguridae</td>\n",
" <td>1</td>\n",
" <td>112</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>4</td>\n",
" <td>Porifera, apricot incrusting</td>\n",
" <td>1</td>\n",
" <td>161</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>5</td>\n",
" <td>Porifera, many osculi</td>\n",
" <td>1</td>\n",
" <td>161</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Unnamed: 0 Taxonomy freq last_seen \\\n",
"0 1 Epizooanthidae 1 107 \n",
"1 2 Lebensspuren (echinoderm bulldozing tracks) 1 112 \n",
"2 3 Paguridae 1 112 \n",
"3 4 Porifera, apricot incrusting 1 161 \n",
"4 5 Porifera, many osculi 1 161 \n",
"\n",
" To_name Status \n",
"0 NaN False \n",
"1 NaN False \n",
"2 NaN False \n",
"3 NaN False \n",
"4 NaN False "
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Back up species column\n",
"Careful not to run this more than once!"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"#df['Species_original'] = df['Taxonomy']"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Unnamed: 0</th>\n",
" <th>Taxonomy</th>\n",
" <th>freq</th>\n",
" <th>last_seen</th>\n",
" <th>To_name</th>\n",
" <th>Status</th>\n",
" <th>Species_original</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>1</td>\n",
" <td>Epizooanthidae</td>\n",
" <td>1</td>\n",
" <td>107</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" <td>Epizooanthidae</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>Lebensspuren (echinoderm bulldozing tracks)</td>\n",
" <td>1</td>\n",
" <td>112</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" <td>Lebensspuren (echinoderm bulldozing tracks)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>3</td>\n",
" <td>Paguridae</td>\n",
" <td>1</td>\n",
" <td>112</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" <td>Paguridae</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>4</td>\n",
" <td>Porifera, apricot incrusting</td>\n",
" <td>1</td>\n",
" <td>161</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" <td>Porifera, apricot incrusting</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>5</td>\n",
" <td>Porifera, many osculi</td>\n",
" <td>1</td>\n",
" <td>161</td>\n",
" <td>NaN</td>\n",
" <td>False</td>\n",
" <td>Porifera, many osculi</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Unnamed: 0 Taxonomy freq last_seen \\\n",
"0 1 Epizooanthidae 1 107 \n",
"1 2 Lebensspuren (echinoderm bulldozing tracks) 1 112 \n",
"2 3 Paguridae 1 112 \n",
"3 4 Porifera, apricot incrusting 1 161 \n",
"4 5 Porifera, many osculi 1 161 \n",
"\n",
" To_name Status Species_original \n",
"0 NaN False Epizooanthidae \n",
"1 NaN False Lebensspuren (echinoderm bulldozing tracks) \n",
"2 NaN False Paguridae \n",
"3 NaN False Porifera, apricot incrusting \n",
"4 NaN False Porifera, many osculi "
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Changes needed to increase the number of matches"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Remove color names from taxa where color does not indicate a new species"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"List of hardcoded color names"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"colors = ['pink', 'white','violet', 'yellow', 'orange', 'red', 'dark', 'green', 'gray', 'blue']"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"colors_2 = ['white', 'silver', 'gray', 'black', 'navy', 'blue', 'cerulean', \n",
" 'sky blue', 'turquoise', 'blue-green', 'azure', 'teal', 'cyan', \n",
" 'green', 'lime', 'chartreuse', 'olive', 'yellow', 'gold', 'amber', \n",
" 'orange', 'brown', 'orange-red', 'red', 'maroon', 'rose', 'red-violet', \n",
" 'pink', 'magenta', 'purple', 'blue-violet', 'indigo', 'violet', 'peach', \n",
" 'apricot', 'ochre', 'plum']"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Color regex"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"allcolors = '|'.join(colors)\n",
"allcolors2 = '|'.join(colors_2)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"* Henricia"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/usr/local/lib/python3.7/dist-packages/pandas/core/indexing.py:190: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame\n",
"\n",
"See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy\n",
" self._setitem_with_indexer(indexer, value)\n"
]
}
],
"source": [
"df['Taxonomy'].loc[df['Taxonomy'].str.contains(\"Henri\") | df['Taxonomy'].str.contains(\"allcolors2\")] = 'Henricia'\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"* Paragorgia"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
"pat = r'\\b(?:{})\\b'.format('|'.join(colors_2))"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [],
"source": [
"df['Taxonomy'].loc[df['Taxonomy'].str.contains(\"paragorgia\") | df['Taxonomy'].str.contains(\"allcolors2\")] = df['Taxonomy'].loc[df['Taxonomy'].str.contains(\"paragorgia\") | df['Taxonomy'].str.contains(\"allcolors2\")].str.replace(pat, '')\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Remove \"sp\""
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [],
"source": [
"df['Taxonomy'] = df['Taxonomy'].apply(lambda x: x.replace(\" sp\",\"\").strip()) # can use a function for this"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"8099"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(df.Taxonomy.unique().tolist())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Remove strings not part of the name\n",
"Apply a function that removes this strings: \"D\" (only if found at the end), \"%\", \"density\", \"Percent conver\", \"/m2\", \"juvenile\" or \"juv\", \".\" and \";\". It also replaces the character \"?\" with the string \" cf\"."
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
"df['Taxonomy'] = tidy(df['Taxonomy'])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## List of candidate names\n",
"All names except those unsure (and those in English)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
"allspecies = df['Taxonomy'][df['Status'] == False] # Don't extract unique values. I have to keep the duplicates and use indices to find the original names"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"8073"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(allspecies)"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [],
"source": [
"allspecies = pd.DataFrame(allspecies)"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Taxonomy</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Epizooanthidae</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Lebensspuren (echinoderm bulldozing tracks)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Paguridae</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Porifera, apricot incrusting</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Porifera, many osculi</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Taxonomy\n",
"0 Epizooanthidae\n",
"1 Lebensspuren (echinoderm bulldozing tracks)\n",
"2 Paguridae\n",
"3 Porifera, apricot incrusting\n",
"4 Porifera, many osculi"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"allspecies.head()"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Int64Index([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n",
" ...\n",
" 8279, 8280, 8281, 8282, 8283, 8284, 8285, 8286, 8287, 8288],\n",
" dtype='int64', length=8073)"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"allspecies.index"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [],
"source": [
"#Detect language? Ideally I would also remove entries that contained at least one non latin (i.e. englishh or norwegian) word"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Remove those unsure"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [],
"source": [
"unsure = pd.DataFrame(df['Taxonomy'][((df['Taxonomy'].str.contains('cf', case=False)) | (df['Taxonomy'].str.contains('/'))) & (df['Status']==False)]) # need to make that case insensitive!! to remove also Cf"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Taxonomy</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>10</th>\n",
" <td>Abietinaria cf</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17</th>\n",
" <td>Acesta excavata cf</td>\n",
" </tr>\n",
" <tr>\n",
" <th>40</th>\n",
" <td>Actinaria/porifera</td>\n",
" </tr>\n",
" <tr>\n",
" <th>61</th>\n",
" <td>Actiniaria buried pink/Flabellum</td>\n",
" </tr>\n",
" <tr>\n",
" <th>64</th>\n",
" <td>Actiniaria buried redish cf</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Taxonomy\n",
"10 Abietinaria cf\n",
"17 Acesta excavata cf\n",
"40 Actinaria/porifera\n",
"61 Actiniaria buried pink/Flabellum\n",
"64 Actiniaria buried redish cf"
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"unsure.head()"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [],
"source": [
"allspecies_sure = allspecies.loc[-allspecies['Taxonomy'].isin(list(unsure['Taxonomy']))] # is a subset of allspecies"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"5932"
]
},
"execution_count": 35,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(allspecies_sure)"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Taxonomy</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>Epizooanthidae</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>Lebensspuren (echinoderm bulldozing tracks)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>Paguridae</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>Porifera, apricot incrusting</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>Porifera, many osculi</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Taxonomy\n",
"0 Epizooanthidae\n",
"1 Lebensspuren (echinoderm bulldozing tracks)\n",
"2 Paguridae\n",
"3 Porifera, apricot incrusting\n",
"4 Porifera, many osculi"
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"allspecies_sure.head()"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
"#part=pd.DataFrame(allspecies_sure[801:2140])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Code function\n",
"\n",
"```fetch_worms_name(url, name)```\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {},
"outputs": [],
"source": [
"from suds import null, WebFault\n",
"from suds.client import Client\n",
"import time\n",
"from socket import error as SocketError\n",
"import errno\n",
"\n",
"def getcl(uri):\n",
" try:\n",
" cl = Client(uri)\n",
" except:\n",
" time.sleep(0.5)\n",
" print(\"connection Failed, trying again.\")\n",
" return Client(uri)\n",
" return cl\n",
"\n",
"def fetch_worms_name(uri='http://www.marinespecies.org/aphia.php?p=soap&wsdl=1', name=''):\n",
" try:\n",
" cl = Client(uri)\n",
" except:\n",
" cl = getcl(uri)\n",
" scinames = cl.factory.create('scientificnames')\n",
" scinames[\"_arrayType\"] = \"string[]\"\n",
" scinames[\"scientificname\"] = name\n",
" try:\n",
" array_of_results_array = cl.service.matchAphiaRecordsByNames(scinames, \n",
" like=\"true\", \n",
" fuzzy=\"true\", \n",
" marine_only=\"true\")\n",
" except:\n",
" time.sleep(0.5)\n",
" print(\"Failed, trying again. # %s\" % i )\n",
" return fetch_worms_name(name=name);\n",
" return array_of_results_array\n",
"\n",
"\n",
"\n",
"def convert_names(df, key):\n",
" results = {}\n",
" count=0\n",
"\n",
" for i in df[key].unique().tolist():\n",
" count = count+1\n",
" print(count, i)\n",
" array_of_results_array = fetch_worms_name(name=i)\n",
" rs = {}\n",
" for results_array in array_of_results_array:\n",
" if len(results_array)==0:\n",
" rs['custom_name'] = i\n",
" results[i]=rs\n",
" else:\n",
" for aphia_object in results_array:\n",
" rs['AphiaID'] = aphia_object.AphiaID\n",
" rs['scientificname'] = aphia_object.scientificname\n",
" rs['rank'] = aphia_object.rank\n",
" rs['valid_name'] = aphia_object.valid_name\n",
" rs['custom_name'] = i\n",
" rs['match_type'] = aphia_object.match_type\n",
" #print(dir(aphia_object))\n",
" results[i]=rs\n",
" return results\n",
"\n",
"def chunks(df, n):\n",
" \"\"\"Yield successive n-sized chunks from l.\"\"\"\n",
" for i in range(0, df.shape[0], n):\n",
" yield df.iloc[i:i + n]"
]
},
{
"cell_type": "code",
"execution_count": 39,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['Crossaster?',\n",
" 'Crossing cables',\n",
" 'crustacea',\n",
" 'Crustacea',\n",
" 'Crustacea in burrow',\n",
" 'Crustacea red',\n",
" 'crustacean in cave',\n",
" 'Crustacean in hole',\n",
" 'Ctenodiscus crispatus',\n",
" 'Ctenodiscus like',\n",
" 'Ctenophora',\n",
" 'Ctenophora benthic',\n",
" 'Ctenophora benthic (devil)',\n",
" 'Ctenophora bentic',\n",
" 'ctenophora bentic (djevel)',\n",
" 'Ctenophora big',\n",
" 'Ctenophora bottom dwelling',\n",
" 'Ctenophora like',\n",
" 'Ctenophora purple',\n",
" 'Ctenophora shadow',\n",
" 'Cucumaria fondosa',\n",
" 'Cucumaria frondosa',\n",
" 'Cucumaria prondosa',\n",
" 'Cumacea',\n",
" 'Cyathura',\n",
" 'Cyatura',\n",
" 'Cyclopteridae',\n",
" 'Cyclopterus lumpus',\n",
" 'Dallina septigera',\n",
" 'Dead Lophelia pertusa',\n",
" 'Dead teleost',\n",
" 'Decapoda',\n",
" 'Decapoda crab',\n",
" 'Decapoda Natantia',\n",
" 'Decapoda red under rocks',\n",
" 'deep sea medusa',\n",
" 'deep sea Medusa',\n",
" 'Deep sea medusa',\n",
" 'Deep sea Medusa',\n",
" 'deep sea medusae',\n",
" 'deep sea meduse',\n",
" 'Deep sea meduse',\n",
" 'Deep sea meduse red',\n",
" 'Deep seea meduse red',\n",
" 'deepsea meduse',\n",
" 'Deepsea meduse',\n",
" 'Defrancia lucernaria',\n",
" 'Defrancia lusernaria',\n",
" 'Dendbeania',\n",
" 'dendrobeania',\n",
" 'Dendrobeania',\n",
" 'Dendrobeania Percent',\n",
" 'DendrobeaniaPercent',\n",
" 'Dendrobenania',\n",
" 'Dendrochirotida',\n",
" 'Dendrodoa aggrega',\n",
" 'Dendrodoa aggregata',\n",
" 'endrodoa aggregata aggregata',\n",
" 'endrodoa aggregata',\n",
" 'Dendronotidae',\n",
" 'Dendronotinae',\n",
" 'Dendronotur',\n",
" 'Dendronotus',\n",
" 'Dendrotnotus',\n",
" 'Denronotidae',\n",
" 'depression in ground',\n",
" 'depressions',\n",
" 'Desmarestia',\n",
" 'Diatrupa',\n",
" 'Didemnidae',\n",
" 'Didemnidae pink',\n",
" 'Didemnum',\n",
" 'Digging porifera bat?',\n",
" 'Diplopteraster multipes',\n",
" 'Dipturus oxyrinchus',\n",
" 'Disporella',\n",
" 'Disturbed sediment',\n",
" 'ditrupa',\n",
" 'Ditrupa',\n",
" 'Ditrupa ?',\n",
" 'Ditrupa 2',\n",
" 'Ditrupa arietina',\n",
" 'itrupa',\n",
" 'Ditrupa D m2',\n",
" 'Ditrupa like',\n",
" 'Ditrupa shells',\n",
" 'Ditrupa tubes',\n",
" 'Ditrupa tubes or alive?',\n",
" 'Ditrupatubes',\n",
" 'Ditrupa tubes ing sediment, alive?',\n",
" 'itrupa tubes',\n",
" 'Ditrupa tubes density',\n",
" 'ditrupa(dead)',\n",
" 'Djevel hydroidae',\n",
" 'Djevel hydroidea',\n",
" 'Djevelhydroidae',\n",
" 'djevelhydroide',\n",
" 'Djevelhydroide',\n",
" 'Docoglossa',\n",
" 'Dorididae',\n",
" 'Drifa-like',\n",
" 'Drifa ?glomerata',\n",
" 'Drifa glomerata',\n",
" 'drifa like',\n",
" 'Drifa',\n",
" 'Duva florida',\n",
" 'Duva',\n",
" 'uva',\n",
" 'Dysidea fragilis',\n",
" 'Echinatus acutus',\n",
" 'Echinocardium',\n",
" 'Echinodea',\n",
" 'Echinodea (irregular dark)',\n",
" 'Echinoidae (regular)',\n",
" 'Echinoidae track',\n",
" 'Echinoidea',\n",
" 'Echinoidea (irregular)',\n",
" 'Echinoidea (regular small dead)',\n",
" 'Echinoidea (regular)',\n",
" 'Echinoidea (regular) ?',\n",
" 'Echinoidea (regular) like',\n",
" 'Echinoidea (white empty testes?)',\n",
" 'Echinoidea (white with redines)',\n",
" 'Echinoidea (white with yellowines)',\n",
" 'Echinoidea ?',\n",
" 'Echinoidea acutus',\n",
" 'Echinoidea big (10cm)',\n",
" 'Echinoidea big trackmaking',\n",
" 'Echinoidea dark purple',\n",
" 'Echinoidea irregaular white (empty testes?)',\n",
" 'Echinoidea irregular',\n",
" 'Echinoidea irregular dark',\n",
" 'Echinoidea irregular dark purple',\n",
" 'Echinoidea irregular dark purple (Spartangus purpureus?)',\n",
" 'Echinoidea irregular dark purple (spartangus)',\n",
" 'Echinoidea irregular dark purple (spartangus?)',\n",
" 'Echinoidea irregular dark purple (Spartangus?)',\n",
" 'Echinoidea irregular dark purple(Spartangus',\n",
" 'Echinoidea irregular violet',\n",
" 'Echinoidea irregular white',\n",
" 'Echinoidea irregular white?',\n",
" 'Echinoidea regular',\n",
" 'Echinoidea regular ?',\n",
" 'Echinoidea track',\n",
" 'Echinoidea white',\n",
" 'Echinoides esculentus',\n",
" 'Echinus',\n",
" 'Echinus acutus',\n",
" 'Echinus acutus (Juv)',\n",
" 'Echinus acutus D m2',\n",
" 'Echinus dead',\n",
" 'Echinus esculentus',\n",
" 'Echinus esculenus',\n",
" 'Echiuira',\n",
" 'Echiura',\n",
" 'Echiuridae',\n",
" 'Echiuroidae',\n",
" 'Echiuroidea',\n",
" 'Edwardsiidae',\n",
" 'eelpout',\n",
" 'egg',\n",
" 'Egg capsule',\n",
" 'Egg mass',\n",
" 'Egg of Neptunea',\n",
" 'Eggcapsule Nactacidae',\n",
" 'Eggcapsule buccinum',\n",
" 'Eggcapsules',\n",
" 'eggmass',\n",
" 'Eggmass like',\n",
" 'Eggs of Prosobranchiata',\n",
" 'Elpidia glacialis',\n",
" 'Elpidia?',\n",
" 'Emarginula',\n",
" 'Enchelyopus cimbrius',\n",
" 'Encrusting green',\n",
" 'Encrusting greenblue',\n",
" 'Encrusting life indet Percent',\n",
" 'encrusting pink',\n",
" 'Encrusting pink',\n",
" 'encrusting red',\n",
" 'Encrusting white',\n",
" 'Enteropneusta',\n",
" 'Ephimera',\n",
" 'epi actiniaria',\n",
" 'Epi Actiniaria',\n",
" 'Epiactiniaria',\n",
" 'Epihimera',\n",
" 'Epimera loricata',\n",
" 'Epimeria',\n",
" 'Epimeriidae',\n",
" 'Epitonium ?',\n",
" 'Epitonium clathrus',\n",
" 'Epitonum',\n",
" 'Epizoanthidae on paguridae',\n",
" 'Epizoanthus',\n",
" 'Epizoanthus_on Paguridae',\n",
" 'epizooanthidae on Paguridae',\n",
" 'Epizooanthidae on Paguridae',\n",
" 'Epizooanthodaep',\n",
" 'Erythropinae',\n",
" 'Etmopterusinax',\n",
" 'Etmopterusinax (Svarth?)',\n",
" 'Eucratea loricata',\n",
" 'eunice norvegica',\n",
" 'Eunice norvegica',\n",
" 'Eunicidae',\n",
" 'Euphasiacea',\n",
" 'Euphausiacea',\n",
" 'Euphrosine',\n",
" 'Eurycope',\n",
" 'Exidmonea',\n",
" 'Faecel coil polychaeta',\n",
" 'Faecel coil polychaetae',\n",
" 'Faecel coils holothurians',\n",
" 'Faeces',\n",
" 'Faeces coils holothurians',\n",
" 'Farrea',\n",
" 'Farrea like',\n",
" 'Farrea occa',\n",
" 'Feces',\n",
" 'Filifera',\n",
" 'Filograna fragments',\n",
" 'Filograna implexa',\n",
" 'Filograna implexa fragment',\n",
" 'Filograna implexa like',\n",
" 'Filograna implexa Percent',\n",
" 'Filograna like',\n",
" 'Filograna',\n",
" 'fish',\n",
" 'Fish in big cave',\n",
" 'Fish in cave',\n",
" 'fishing gear',\n",
" 'Fishing gear',\n",
" 'Fishing Gear',\n",
" 'fishing gear (rope)',\n",
" 'fishing gear (wire)',\n",
" 'fishing gear trawl wire',\n",
" 'fishing line',\n",
" 'Fishing line',\n",
" 'Fishing net',\n",
" 'Fishing net with line',\n",
" 'Fishingear',\n",
" 'Fishingear (btis from a trawl)',\n",
" 'Fishingear gillnet',\n",
" 'Fishingear line',\n",
" 'Flabellina',\n",
" 'Flabellum ?',\n",
" 'Flabellum',\n",
" 'Flabellum like',\n",
" 'Flabellum macandrewi',\n",
" 'Flabellum macandrewi or Fungicyathus?',\n",
" 'Flabellum macandrewi?',\n",
" 'Flabellum macandrewi???',\n",
" 'Flat fish',\n",
" 'flatfish',\n",
" 'Flatfish',\n",
" 'Flatfish rocket',\n",
" 'Flekksteinbit',\n",
" 'flounder',\n",
" 'Flounder',\n",
" 'Flustidae',\n",
" 'Flustra',\n",
" 'Flustra ?',\n",
" 'Flustra like',\n",
" 'Flustra?',\n",
" 'flustridae',\n",
" 'Flustridae',\n",
" 'Flustridae?',\n",
" 'Flustrina',\n",
" 'Flyffy porifera tunicata like',\n",
" 'Foram Sand amobe',\n",
" 'Foram white globular',\n",
" 'Foraminfera snail',\n",
" 'Foraminifera',\n",
" 'Foraminifera (agglutinated)',\n",
" 'Foraminifera (amøbe)',\n",
" 'Foraminifera (arborescent)?',\n",
" 'Foraminifera (astrorhiza)',\n",
" 'Foraminifera (calcareous)',\n",
" 'Foraminifera (Calcareous)',\n",
" 'Foraminifera (pelosina arborescens)',\n",
" 'Foraminifera (sand abøbe)',\n",
" 'Foraminifera (sand amøbe)',\n",
" 'Foraminifera (sand)',\n",
" 'Foraminifera (sand) amøbe',\n",
" 'foraminifera (White dots in sand)',\n",
" 'Foraminifera (white globular)',\n",
" 'Foraminifera (white small)',\n",
" 'Foraminifera agglutinated',\n",
" 'Foraminifera agglutinated Percent',\n",
" 'Foraminifera agglutinated with calcareous',\n",
" 'Foraminifera agglutinating',\n",
" 'foraminifera agglutining branched',\n",
" 'Foraminifera aglutinated',\n",
" 'Foraminifera amobe',\n",
" 'Foraminifera brown agglutinated',\n",
" 'Foraminifera brown globular',\n",
" 'Foraminifera calcareous',\n",
" 'Foraminifera calcareous ?',\n",
" 'Foraminifera calcareous big',\n",
" 'Foraminifera calcareous D 200',\n",
" 'Foraminifera calcareous on hyas',\n",
" 'Foraminifera calcareous age',\n",
" 'Foraminifera calcareous white globular',\n",
" 'Foraminifera calcareous white globular Density',\n",
" 'Foraminifera calcareous white globular Percent',\n",
" 'Foraminifera calcareousD 1000',\n",
" 'Foraminifera orange globular',\n",
" 'Foraminifera sand',\n",
" 'Foraminifera sand amoeba',\n",
" 'Foraminifera sand amøbe',\n",
" 'Foraminifera snail',\n",
" 'Foraminifera white dots',\n",
" 'Foraminifera white globular',\n",
" 'Foraminifera white golbular',\n",
" 'Foraminifera white on Umbellula',\n",
" 'Foraminifera white small',\n",
" 'Foraminifera white snail',\n",
" 'Foraminifera?',\n",
" 'Fungiacyathus fragilis',\n",
" 'Fungiacyathus fragilis?',\n",
" 'funiculina aquadrangularis',\n",
" 'Funiculina quadrangularis',\n",
" 'fuzzy sediment balls (Xenophyophora?)',\n",
" 'fuzzy sediment balls (Xenophyophyophores?)',\n",
" 'Gadeidae',\n",
" 'Gadhus morhua',\n",
" 'Gadiculus argenteus',\n",
" 'Gadiculus argenteus s?lvtorsk',\n",
" 'Gadiculus argenteus solvtorsk',\n",
" 'Gadiculus argenteus thori',\n",
" 'Gadidae',\n",
" 'Gadidae 1',\n",
" 'gadide',\n",
" 'Gadoidae',\n",
" 'gadus morhua',\n",
" 'Gadus morhua',\n",
" 'Gadus morhua?',\n",
" 'Gaidropsarus argentatus',\n",
" 'Galateidea',\n",
" 'Galathea',\n",
" 'Galatheidae',\n",
" 'Galatheidaep',\n",
" 'Galatheidaep?',\n",
" 'Galatheoidea',\n",
" 'Galeus melastomus',\n",
" 'Galeus melastomus (H?gjel)',\n",
" 'Gammaridae',\n",
" 'Gammaroidea',\n",
" 'Gastopoda',\n",
" 'Gastropoda',\n",
" 'Gastropoda- egg mass',\n",
" 'Gastropoda- eggmass',\n",
" 'Gastropoda-like',\n",
" 'Gastropoda (Dead or alive)',\n",
" 'Gastropoda (neptunea Dead or alive)',\n",
" 'Gastropoda empty shell?',\n",
" 'Gastropoda ?',\n",
" 'Gastropoda alive or just shell?',\n",
" 'Gastropoda alive?',\n",
" 'Gastropoda Buccinum',\n",
" 'Gastropoda dead or alive',\n",
" 'Gastropoda dead or alive?',\n",
" 'Gastropoda dead?',\n",
" 'Gastropoda eggs',\n",
" 'Gastropoda in sand',\n",
" 'Gastropoda like',\n",
" 'Gastropoda limpet-like',\n",
" 'Gastropoda may be dead',\n",
" 'Gastropoda Neptunea-like',\n",
" 'Gastropoda prosobranchia',\n",
" 'Gastropoda shell',\n",
" 'Gastropoda shell (dead?)',\n",
" 'Gastropoda shell or alive?',\n",
" 'Gastropoda white strange',\n",
" 'Gastropoda( buccinum undatum)',\n",
" 'Gastropoda(Neptunea like)',\n",
" 'Gastropoda small',\n",
" 'Gastropoda?',\n",
" 'Geodia',\n",
" 'Geodia-like',\n",
" 'Geodia ?',\n",
" 'Geodia atlantica',\n",
" 'Geodia atlantica like',\n",
" 'Geodia baretti',\n",
" 'Geodia baretti ?',\n",
" 'Geodia baretti like',\n",
" 'Geodia barretti',\n",
" 'Geodia like',\n",
" 'Geodia macandrewi',\n",
" 'Geodia macandrewii',\n",
" 'Geodia monk',\n",
" 'Geodia phlegraei',\n",
" 'Geodia flat top',\n",
" 'Geodia?',\n",
" 'Geodia stelletta',\n",
" 'Geodia7isops',\n",
" 'gerodia like',\n",
" 'Gersemia on rhizocrinus',\n",
" 'Gersemia rubiformis',\n",
" 'Gersemia',\n",
" 'Geryon',\n",
" 'Geryon trispinosus',\n",
" 'Gibbula',\n",
" 'glasponge',\n",
" 'Glasponge',\n",
" 'glassponge',\n",
" 'Glassponge',\n",
" 'Glassvamp',\n",
" 'Glyptoceophalus cynoglossus',\n",
" 'Glyptocephalus cynoglossus',\n",
" 'Gobidae',\n",
" 'gobiidae',\n",
" 'Gobiidae',\n",
" 'Gonathus',\n",
" 'Gonatus',\n",
" 'Gonatus fabricii',\n",
" 'Goose barnacles',\n",
" 'Gorgonacea',\n",
" 'Gorgonocea',\n",
" 'Gorgonocea?',\n",
" 'Gorgonocephalus',\n",
" 'Gorgonocephalusjuv',\n",
" 'Gorgononocephalus',\n",
" 'Gracilechinus acutus',\n",
" 'Gracilechinus acutusjuv',\n",
" 'Gracilechinus',\n",
" 'Grantia compressa',\n",
" 'graskate like',\n",
" 'grasteinbit',\n",
" 'green hair',\n",
" 'Green unidentified',\n",
" 'Greenland Halbut',\n",
" 'Greenland halibut',\n",
" 'Grenadier',\n",
" 'Grenadier?',\n",
" 'Grimpoteuthis',\n",
" 'Halcampa arctica',\n",
" 'halcampa artica',\n",
" 'Halcampa artica',\n",
" 'Halcampa',\n",
" 'Halcampia arctica',\n",
" 'halcampoides',\n",
" 'Halcampoides',\n",
" 'Halecium',\n",
" 'halibut',\n",
" 'Halibut']"
]
},
"execution_count": 39,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#lst = allspecies_sure['Taxonomy'].unique().tolist()\n",
"#lst[1153:1600]"
]
},
{
"cell_type": "code",
"execution_count": 40,
"metadata": {
"scrolled": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1 Epizooanthidae\n",
"2 Lebensspuren (echinoderm bulldozing tracks)\n",
"3 Paguridae\n",
"4 Porifera, apricot incrusting\n",
"5 Porifera, many osculi\n",
"6 Porifera, offwhite incrusting\n",
"7 Porifera, orange incrusting\n",
"8 Porifera, small round\n",
"9 Porifera, yellow incrusting\n",
"10 Abietinaria abietina\n",
"11 Ablyraja\n",
"12 Acanthostepheia\n",
"13 Acesta\n",
"14 Acesta excavata\n",
"15 Aciniaria\n",
"16 Acintiniaria\n",
"17 Acintiniaria small white\n",
"18 Actin\n",
"19 Actinaria (pink lang stilk)\n"
]
},
{
"ename": "NameError",
"evalue": "name 'i' is not defined",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-38-599651a5cb39>\u001b[0m in \u001b[0;36mfetch_worms_name\u001b[0;34m(uri, name)\u001b[0m\n\u001b[1;32m 27\u001b[0m \u001b[0mfuzzy\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"true\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 28\u001b[0;31m marine_only=\"true\")\n\u001b[0m\u001b[1;32m 29\u001b[0m \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.7/dist-packages/suds/client.py\u001b[0m in \u001b[0;36m__call__\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 520\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 521\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mclient\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minvoke\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 522\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mWebFault\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.7/dist-packages/suds/client.py\u001b[0m in \u001b[0;36minvoke\u001b[0;34m(self, args, kwargs)\u001b[0m\n\u001b[1;32m 580\u001b[0m \u001b[0mtimer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 581\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msoapenv\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 582\u001b[0m \u001b[0mtimer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstop\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.7/dist-packages/suds/client.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, soapenv)\u001b[0m\n\u001b[1;32m 612\u001b[0m \u001b[0mtimer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 613\u001b[0;31m \u001b[0mreply\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0moptions\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtransport\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 614\u001b[0m \u001b[0mtimer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstop\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.7/dist-packages/suds/transport/https.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 65\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0maddcredentials\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 66\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mHttpTransport\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mrequest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 67\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.7/dist-packages/suds/transport/http.py\u001b[0m in \u001b[0;36msend\u001b[0;34m(self, request)\u001b[0m\n\u001b[1;32m 81\u001b[0m \u001b[0mlog\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdebug\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'sending:\\n%s'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mrequest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 82\u001b[0;31m \u001b[0mfp\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mu2open\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mu2request\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 83\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetcookies\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mu2request\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/local/lib/python3.7/dist-packages/suds/transport/http.py\u001b[0m in \u001b[0;36mu2open\u001b[0;34m(self, u2request)\u001b[0m\n\u001b[1;32m 131\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mu2request\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 132\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0murl\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mu2request\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtm\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 133\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/urllib/request.py\u001b[0m in \u001b[0;36mopen\u001b[0;34m(self, fullurl, data, timeout)\u001b[0m\n\u001b[1;32m 524\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 525\u001b[0;31m \u001b[0mresponse\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_open\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mreq\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 526\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/urllib/request.py\u001b[0m in \u001b[0;36m_open\u001b[0;34m(self, req, data)\u001b[0m\n\u001b[1;32m 542\u001b[0m result = self._call_chain(self.handle_open, protocol, protocol +\n\u001b[0;32m--> 543\u001b[0;31m '_open', req)\n\u001b[0m\u001b[1;32m 544\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mresult\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/urllib/request.py\u001b[0m in \u001b[0;36m_call_chain\u001b[0;34m(self, chain, kind, meth_name, *args)\u001b[0m\n\u001b[1;32m 502\u001b[0m \u001b[0mfunc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mgetattr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mhandler\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmeth_name\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 503\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 504\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mresult\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/urllib/request.py\u001b[0m in \u001b[0;36mhttp_open\u001b[0;34m(self, req)\u001b[0m\n\u001b[1;32m 1344\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mhttp_open\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreq\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1345\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdo_open\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mhttp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mclient\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mHTTPConnection\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreq\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1346\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/urllib/request.py\u001b[0m in \u001b[0;36mdo_open\u001b[0;34m(self, http_class, req, **http_conn_args)\u001b[0m\n\u001b[1;32m 1319\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mURLError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1320\u001b[0;31m \u001b[0mr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mh\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetresponse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1321\u001b[0m \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36mgetresponse\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1320\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1321\u001b[0;31m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbegin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1322\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36mbegin\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 295\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 296\u001b[0;31m \u001b[0mversion\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstatus\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreason\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 297\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0mCONTINUE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/http/client.py\u001b[0m in \u001b[0;36m_read_status\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 256\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 257\u001b[0;31m \u001b[0mline\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreadline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_MAXLINE\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"iso-8859-1\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 258\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mline\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0m_MAXLINE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m/usr/lib/python3.7/socket.py\u001b[0m in \u001b[0;36mreadinto\u001b[0;34m(self, b)\u001b[0m\n\u001b[1;32m 588\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 589\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sock\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_into\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 590\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mKeyboardInterrupt\u001b[0m: ",
"\nDuring handling of the above exception, another exception occurred:\n",
"\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-40-3dd290196c73>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mconvert_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mallspecies_sure\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m'Taxonomy'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
"\u001b[0;32m<ipython-input-38-599651a5cb39>\u001b[0m in \u001b[0;36mconvert_names\u001b[0;34m(df, key)\u001b[0m\n\u001b[1;32m 42\u001b[0m \u001b[0mcount\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcount\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 43\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcount\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mi\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 44\u001b[0;31m \u001b[0marray_of_results_array\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfetch_worms_name\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 45\u001b[0m \u001b[0mrs\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m{\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 46\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mresults_array\u001b[0m \u001b[0;32min\u001b[0m \u001b[0marray_of_results_array\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;32m<ipython-input-38-599651a5cb39>\u001b[0m in \u001b[0;36mfetch_worms_name\u001b[0;34m(uri, name)\u001b[0m\n\u001b[1;32m 29\u001b[0m \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 30\u001b[0m \u001b[0mtime\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msleep\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m0.5\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 31\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"Failed, trying again. # %s\"\u001b[0m \u001b[0;34m%\u001b[0m \u001b[0mi\u001b[0m \u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 32\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mfetch_worms_name\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m;\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 33\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0marray_of_results_array\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mNameError\u001b[0m: name 'i' is not defined"
]
}
],
"source": [
"#results = convert_names(allspecies_sure,'Taxonomy')"
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {},
"outputs": [],
"source": [
"#test = allspecies_sure.iloc[1153:1165]\n"
]
},
{
"cell_type": "code",
"execution_count": 65,
"metadata": {},
"outputs": [],
"source": [
"gen = chunks(allspecies_sure, 1000)"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1 Epizooanthidae\n",
"2 Lebensspuren (echinoderm bulldozing tracks)\n",
"3 Paguridae\n",
"4 Porifera, apricot incrusting\n",
"5 Porifera, many osculi\n",
"6 Porifera, offwhite incrusting\n",
"7 Porifera, orange incrusting\n",
"8 Porifera, small round\n",
"9 Porifera, yellow incrusting\n",
"10 Abietinaria abietina\n",
"11 Ablyraja\n",
"12 Acanthostepheia\n",
"13 Acesta\n",
"14 Acesta excavata\n",
"15 Aciniaria\n",
"16 Acintiniaria\n",
"17 Acintiniaria small white\n",
"18 Actin\n",
"19 Actinaria (pink lang stilk)\n",
"20 Actinaria (pink with dots)\n",
"21 Actinaria (pink)\n",
"22 Actinaria (red)\n",
"23 Actinaria (violet)\n",
"24 Actinaria indet\n",
"25 Actinaria orange\n",
"26 Actinaria pink\n",
"27 Actinaria pink (white stolon)\n",
"28 Actinaria red\n",
"29 Actinaria small red\n",
"30 Actinaria small violet\n",
"31 Actinaria small white\n",
"32 Actinaria violet\n",
"33 Actinaria white\n",
"34 Actinaria yellow\n",
"35 Actiniaria\n",
"36 Actiniaria-like\n",
"37 Actiniaria on Rhizocrinus stalk\n",
"38 Actiniaria (Bolocera?)\n",
"39 Actiniaria (brownish disk, white long tentacles\n",
"40 Actiniaria (buried dark)\n",
"41 Actiniaria (dark buried)\n",
"42 Actiniaria (dark burried)\n",
"43 Actiniaria (dark)\n",
"44 Actiniaria (Metridiumspp?)\n",
"45 Actiniaria (orange)\n",
"46 Actiniaria (red)\n",
"47 Actiniaria (violett)\n",
"48 Actiniaria (white)\n",
"49 Actiniaria (yellow-orange)\n",
"50 Actiniaria buried\n",
"51 Actiniaria buried brown\n",
"52 Actiniaria buried brownish\n",
"53 Actiniaria buried dark\n",
"54 Actiniaria buried pink\n",
"55 Actiniaria buried red\n",
"56 Actiniaria buried redish\n",
"57 Actiniaria buried redish small\n",
"58 Actiniaria buried small\n",
"59 Actiniaria buried transparent\n",
"60 Actiniaria buried yellow\n",
"61 Actiniaria buried yellow small\n",
"62 Actiniaria buriedredish\n",
"63 Actiniaria burried\n",
"64 Actiniaria burrowed pink\n",
"65 Actiniaria colonial\n",
"66 Actiniaria dark\n",
"67 Actiniaria dark buried\n",
"68 Actiniaria dark burowd\n",
"69 Actiniaria dark red\n",
"70 Actiniaria indet\n",
"71 Actiniaria indet on pagurid\n",
"72 Actiniaria indet on stalk\n",
"73 Actiniaria indet orange\n",
"74 Actiniaria indet small\n",
"75 Actiniaria indet small red\n",
"76 Actiniaria indet small white\n",
"77 Actiniaria like\n",
"78 Actiniaria like orange\n",
"79 Actiniaria long pale stolon\n",
"80 Actiniaria long stolon orange tentacles\n",
"81 Actiniaria long white stolon\n",
"82 Actiniaria naked\n",
"83 Actiniaria on boulder\n",
"84 Actiniaria on Bourgueticrinina\n",
"85 Actiniaria on bush\n",
"86 Actiniaria on paguridae\n",
"87 Actiniaria on Paguridae\n",
"88 Actiniaria on Paguridea\n",
"89 Actiniaria on Rhizocrinus\n",
"90 Actiniaria on rhizocrinus stalk\n",
"91 Actiniaria on shell\n",
"92 Actiniaria on stem\n",
"93 Actiniaria orange\n",
"94 Actiniaria orange buried\n",
"95 Actiniaria orange column\n",
"96 Actiniaria orange small\n",
"97 Actiniaria pale\n",
"98 Actiniaria pale pink\n",
"99 Actiniaria pink\n",
"100 Actiniaria pink ?\n",
"101 Actiniaria pink buried\n",
"102 Actiniaria pink burried small\n",
"103 Actiniaria pink burrowd\n",
"104 Actiniaria pink large\n",
"105 Actiniaria pink like\n",
"106 Actiniaria pink on Rhizocrinus stalk\n",
"107 Actiniaria pink on rhizocrinus stem\n",
"108 Actiniaria pink on Rhizocrinus stem\n",
"109 Actiniaria pink on Sabellidae\n",
"110 Actiniaria pink pale\n",
"111 Actiniaria pink small\n",
"112 Actiniaria pink white dots on stolon buried\n",
"113 Actiniaria pink white stolon\n",
"114 Actiniaria pinksmall\n",
"115 Actiniaria pnk\n",
"116 Actiniaria purple\n",
"117 Actiniaria red\n",
"118 Actiniaria red center white tips\n",
"119 Actiniaria red many arms\n",
"120 Actiniaria red small\n",
"121 Actiniaria redish\n",
"122 Actiniaria small\n",
"123 Actiniaria small pale\n",
"124 Actiniaria small brown\n",
"125 Actiniaria small on Rhizocrinus stalk\n",
"126 Actiniaria small orange\n",
"127 Actiniaria small pale\n",
"128 Actiniaria small pale yellow\n",
"129 Actiniaria small pink\n",
"130 Actiniaria small purple\n",
"131 actiniaria small red\n",
"132 Actiniaria small red\n",
"133 Actiniaria small transparent\n",
"134 Actiniaria small violet\n",
"135 Actiniaria small white\n",
"136 Actiniaria small white small\n",
"137 Actiniaria small yellow\n",
"138 Actiniaria small zooantidae like white\n",
"139 Actiniaria smallpale\n",
"140 Actiniaria transparent\n",
"141 Actiniaria transparent white\n",
"142 Actiniaria violet\n",
"143 Actiniaria violet long stem small\n",
"144 Actiniaria violet small\n",
"145 Actiniaria violet small colonial\n",
"146 Actiniaria white\n",
"147 Actiniaria White\n",
"148 Actiniaria white-like\n",
"149 Actiniaria white-pink\n",
"150 Actiniaria white and pink\n",
"151 Actiniaria white colonial\n",
"152 Actiniaria white like\n",
"153 Actiniaria white on rhizocrinus\n",
"154 Actiniaria white on stalk\n",
"155 Actiniaria white pink\n",
"156 Actiniaria white pink tentacel joints\n",
"157 Actiniaria white small\n",
"158 Actiniaria white small like\n",
"159 Actiniaria white small on boulder\n",
"160 Actiniaria white small on stalk\n",
"161 Actiniaria white stolon violet tentacles\n",
"162 Actiniaria yellow\n",
"163 Actiniaria yellow-like\n",
"164 Actiniaria yellow burried small\n",
"165 Actiniaria yellow on stylocordyla stalk\n",
"166 Actiniaria yellow small\n",
"167 Actiniaria, dark\n",
"168 Actiniaria, red\n",
"169 Actiniaria, small\n",
"170 Actiniaria, small dark\n",
"171 Actiniaria, small red\n",
"172 Actiniaria, small rose\n",
"173 Actiniaria, white\n",
"174 Actiniaria long pale stolon\n",
"175 Actiniaria various\n",
"176 Actiniariaorange\n",
"177 Actiniariapink\n",
"178 Actiniariaviolet\n",
"179 Actiniariawhite\n",
"180 Actiniaria?\n",
"181 Actiniaria? on boulder\n",
"182 Actiniaria? orange\n",
"183 Actinistola\n",
"184 Actinistola like\n",
"185 Actinostola\n",
"186 Actinostola callosa\n",
"187 Actinostola like\n",
"188 Actinostola white\n",
"189 Aega\n",
"190 Aeolidina\n",
"191 Alcyonacea\n",
"192 Alcyonacea yellow\n",
"193 Alcyonaria\n",
"194 Alcyonaria s brown (could also beonge)\n",
"195 Alcyonariap, brown\n",
"196 Alcyonariap brown\n",
"197 Alcyonaria?p brown\n",
"198 Alcyonia brown\n",
"199 Alcyoniap brown\n",
"200 Alcyonidiidae\n",
"201 Alcyonidium\n",
"202 Alcyonidium disciforme\n",
"203 Alcyonium digitatum\n",
"204 Alepål\n",
"205 Algae red\n",
"206 Algae Red\n",
"207 Alger\n",
"208 Amathillopsis\n",
"209 Amathillopsisingiera\n",
"210 Amathillopsisinigera\n",
"211 amathilopsisinigera\n",
"212 Amathyllopsisinigera\n",
"213 Amblyraja\n",
"214 Amblyraja hyperborea\n",
"215 Amblyraja radiata\n",
"216 ammodytdae\n",
"217 Ammodytidae\n",
"218 Ampharetidae\n",
"219 Amphipoda\n",
"220 Amphipoda-like\n",
"221 Amphipoda big Red\n",
"222 Amphipoda ?\n",
"223 Amphipoda big\n",
"224 Amphipoda big antenna\n",
"225 Amphipoda big pink\n",
"226 Amphipoda cave\n",
"227 Amphipoda Cleippes\n",
"228 Amphipoda colonial\n",
"229 Amphipoda dark\n",
"230 Amphipoda dark ( swarm)\n",
"231 Amphipoda dark head\n",
"232 Amphipoda dark head white tail\n",
"233 amphipoda in cave\n",
"234 Amphipoda in schapopoda shell\n",
"235 Amphipoda in tube\n",
"236 Amphipoda in tubes\n",
"237 Amphipoda indet\n",
"238 Amphipoda like\n",
"239 Amphipoda like sitting on stalk small and big\n",
"240 Amphipoda might be caprellidae\n",
"241 Amphipoda on Bathycrinus\n",
"242 Amphipoda on Bathycrinus stalk\n",
"243 Amphipoda on Chondriocladia\n",
"244 Amphipoda on corymorpha\n",
"245 Amphipoda on Corymorpha stem\n",
"246 Amphipoda on hydroid stalk\n",
"247 Amphipoda on hydroidea\n",
"248 Amphipoda on hydroza stalk\n",
"249 Amphipoda on sand tube\n",
"250 Amphipoda on sandy stalk\n",
"251 Amphipoda on stalk\n",
"252 Amphipoda on stalked hydrozoa\n",
"253 Amphipoda on stylocordyla\n",
"254 Amphipoda on tubes\n",
"255 Amphipoda onn sand tube\n",
"256 Amphipoda onsand tube\n",
"257 Amphipoda or isopoda\n",
"258 Amphipoda orange\n",
"259 Amphipoda orange yellow\n",
"260 Amphipoda pink\n",
"261 Amphipoda pink small\n",
"262 Amphipoda red\n",
"263 Amphipoda Red\n",
"264 Amphipoda red eyes\n",
"265 Amphipoda Red long legs\n",
"266 Amphipoda rosa\n",
"267 Amphipoda Sand tubes (thick)\n",
"268 Amphipoda small\n",
"269 Amphipoda small indet\n",
"270 Amphipoda small on Hydrozoa\n",
"271 Amphipoda small red\n",
"272 Amphipoda small white\n",
"273 Amphipoda surfing\n",
"274 Amphipoda swarm\n",
"275 Amphipoda swimming\n",
"276 Amphipoda transparent\n",
"277 Amphipoda tube\n",
"278 Amphipoda Tube\n",
"279 Amphipoda tube colony\n",
"280 Amphipoda tube complex\n",
"281 Amphipoda white\n",
"282 Amphipoda White\n",
"283 Amphipoda white on Corymorpha\n",
"284 Amphipoda white on tubularia\n",
"285 Amphipoda white red\n",
"286 Amphipoda white small\n",
"287 Amphipoda whiteinyback\n",
"288 Amphipoda white swimming\n",
"289 Amphipoda white with dark head\n",
"290 Amphipoda yellow\n",
"291 Amphipoda, cave???\n",
"292 Amphipoda in caves\n",
"293 Amphipodasurfing\n",
"294 Anarhicas\n",
"295 Anarhicas lupus\n",
"296 Anarhichadidae\n",
"297 Anarhichas denticulatus\n",
"298 Anarhichas lupus\n",
"299 Anarhichas minor\n",
"300 Anarhichas\n",
"301 anemone\n",
"302 Anemone\n",
"303 Anemone (Carianthus?)\n",
"304 Anemone (orange)\n",
"305 anemone burrowing\n",
"306 Anemone burrowing\n",
"307 animal track\n",
"308 Animalia indet\n",
"309 Animalia indet branched\n",
"310 Animalia violet\n",
"311 animals in cave\n",
"312 Annelida\n",
"313 anomiacea\n",
"314 Anomiacea\n",
"315 Anomiacea on paguridae\n",
"316 Anomiacea on Paguridae\n",
"317 Anomiidae\n",
"318 Anomura\n",
"319 Antedonacea\n",
"320 Antedonacea Brown\n",
"321 Antedonacea red\n",
"322 Antedonacea swimming\n",
"323 Antedonacea waving\n",
"324 Antedonoidea\n",
"325 Antedonoidea density\n",
"326 Antedonoidea Hathrometra tenella\n",
"327 Antedonoidea Hathrometra tenella\n",
"328 AntedonoideaHathrometra tenella\n",
"329 Antedonoideat Hathrometra tenella\n",
"330 antenna\n",
"331 Anthelia\n",
"332 Anthelia borealis\n",
"333 antho\n",
"334 Antho-like\n",
"335 Antho-like orange\n",
"336 Antho -like\n",
"337 Antho ?\n",
"338 Antho dichotoma\n",
"339 Antho dichotoma fragment\n",
"340 Antho like\n",
"341 Antho likeS\n",
"342 Antho llike\n",
"343 Anthop\n",
"344 Antho?\n",
"345 Anthomastus\n",
"346 Anthothela\n",
"347 Anthothela grandiflora\n",
"348 Anthothela?\n",
"349 anthozoa\n",
"350 Anthozoa\n",
"351 anthozoa on Bathycrinus\n",
"352 anthozoa on Hexactinellidae\n",
"353 Anthozoa on Hexactinellidae\n",
"354 anthozoa on porifera\n",
"355 anthropogen rubbish (plastic)\n",
"356 anthropogenic rubbish (broken mug)\n",
"357 anthropogenic rubbish (plate or bowl)\n",
"358 Anthuroidea\n",
"359 Antrophogenic rubbish\n",
"360 Antrophogenic rubbish big square thing\n",
"361 Antrophogenic rubbish bottle\n",
"362 Antrophogenic rubbish garnring\n",
"363 Antrophogenic rubbish glowe\n",
"364 Antrophogenic rubbish plastic\n",
"365 Antrophogenic rubbish wire\n",
"366 Antrophogenic rubbish7 bottle\n",
"367 Aphrodita\n",
"368 Aphrodita aculeata\n",
"369 Aphrodithea\n",
"370 Aphroditidae\n",
"371 Aplysilla\n",
"372 Aplysilla on stryphus\n",
"373 Aplysilla sulfurea\n",
"374 Aplysilla sulfurea on Stryphnus\n",
"375 Aplysilla sulfurea on strypnus\n",
"376 Aplysilla sulfurea on Strypnus\n",
"377 Aplysilla sulfurea?\n",
"378 Aplysilla sulfurea? or Porifera yellow multiple tube-shaped\n",
"379 Aporrhais pespelicani\n",
"380 applesinonge\n",
"381 applesinonge?\n",
"382 Arctica islandica\n",
"383 Arctinula grenlandica\n",
"384 Arctozenus risso\n",
"385 Arctozenus risso ?\n",
"386 argentina\n",
"387 Argentina\n",
"388 Argentinida\n",
"389 Argentinidae\n",
"390 Argentinus\n",
"391 Armføttinger\n",
"392 Artediellus atlanticus\n",
"393 Asbestopluma-like\n",
"394 Asbestopluma like\n",
"395 Asbestopluma like branched with amphipoda\n",
"396 Asbestopluma pennatula\n",
"397 Asbestopluma pennatula in sandy stalk\n",
"398 Asbestopluma pennatula like\n",
"399 Asbestopluma with gastropoda\n",
"400 asc\n",
"401 Ascidia\n",
"402 Ascidia (solitary transparent)\n",
"403 Ascidia (transparen yellow)\n",
"404 Ascidia (transparent green yellow ish)\n",
"405 Ascidia (transparent yellow)\n",
"406 Ascidia (transparent)\n",
"407 Ascidia (transparent) yellow blood vessels\n",
"408 Ascidia (violet transparent)\n",
"409 Ascidia (violet)\n",
"410 Ascidia (yellow)\n",
"411 Ascidia ?\n",
"412 Ascidia colonial? orange\n",
"413 Ascidia green\n",
"414 Ascidia greenyellow\n",
"415 Ascidia mentula\n",
"416 Ascidia solitary\n",
"417 Ascidia (violett)\n",
"418 Ascidia (white)\n",
"419 Ascidia (white) (Ascidia virginea-like)\n",
"420 Ascidia (white) Ascida virginea\n",
"421 Ascidia (white) Ascidia virginea\n",
"422 Ascidia (white) Ascidia virginea?\n",
"423 Ascidia (white)Ascidia virginea?\n",
"424 Ascidia Ascidia virginea\n",
"425 Ascidia Ascidia virginea?\n",
"426 Ascidia colonial?\n",
"427 Ascidia white\n",
"428 Ascidia yellow\n",
"429 Ascidiatransparent\n",
"430 Ascidia?\n",
"431 Ascidiap (white)?\n",
"432 Ascidia transparent\n",
"433 Ascidia transparent pink\n",
"434 Ascidia transparent solitary\n",
"435 Ascidia veined\n",
"436 Ascidia veined green transparent\n",
"437 Ascidia veined yellow\n",
"438 Ascidia violet\n",
"439 Ascidia violet transparent\n",
"440 Ascidia virginea\n",
"441 Ascidia virginea?\n",
"442 Ascidia yellow veined\n",
"443 Ascidia, solitary\n",
"444 Ascidia transparent green\n",
"445 Ascidia transparentgreen\n",
"446 Ascidiacea\n",
"447 Ascidiacea colonial\n",
"448 Ascidiacea colonial encrusting\n",
"449 Ascidiacea solitary\n",
"450 Asconema-like\n",
"451 Asconema setubalence\n",
"452 Asconema setubalense\n",
"453 Asconema setubalsense\n",
"454 Asconema setublaense\n",
"455 Ascophora encrusting\n",
"456 Astacidea\n",
"457 Astacilla\n",
"458 Astacilla colony\n",
"459 Astacilla like\n",
"460 Astacilla on Corymorpha stem\n",
"461 Astacilla on hydrozoa stalk\n",
"462 Astacilla surfing\n",
"463 Astacilla with children\n",
"464 Astarte\n",
"465 Astarte may be dead\n",
"466 Astartep\n",
"467 Astartep?\n",
"468 Astartidae\n",
"469 Astasidea\n",
"470 Astasidea in burrow\n",
"471 Astasidea?\n",
"472 asterias rubens\n",
"473 Asterias rubens\n",
"474 Asterias rubens violet\n",
"475 Asterias\n",
"476 asteriidae\n",
"477 Asteriidae\n",
"478 Asteriidae violet\n",
"479 Asteriodea white\n",
"480 Asteroidae\n",
"481 Asteroidae (Orange)\n",
"482 Asteroidae orange\n",
"483 Asteroidae yellow\n",
"484 Asteroide long arms swollen\n",
"485 Asteroidea\n",
"486 Asteroidea-like\n",
"487 Asteroidea (Lepstasterias)\n",
"488 Asteroidea (Leptasterias)\n",
"489 Asteroidea (Orange with white armtips)\n",
"490 Asteroidea (orange)\n",
"491 Asteroidea (Orange)\n",
"492 Asteroidea (Orange) enil\n",
"493 Asteroidea (Orange)?\n",
"494 Asteroidea (Orange)=Stichastrella\n",
"495 asteroidea (pink)\n",
"496 Asteroidea (pink)\n",
"497 Asteroidea (red with white tips)\n",
"498 Asteroidea (white)\n",
"499 Asteroidea (White)\n",
"500 Asteroidea (yellow)\n",
"501 Asteroidea (Yellow)\n",
"502 Asteroidea ?\n",
"503 Asteroidea = porania\n",
"504 Asteroidea beige small\n",
"505 Asteroidea big\n",
"506 Asteroidea big burried\n",
"507 Asteroidea big fat\n",
"508 Asteroidea big orange\n",
"509 Asteroidea big white\n",
"510 Asteroidea big white beige\n",
"511 asteroidea big white round arms\n",
"512 Asteroidea blue\n",
"513 Asteroidea bureied\n",
"514 Asteroidea buried\n",
"515 Asteroidea ceramaster like\n",
"516 Henricia\n",
"517 Asteroidea dark red\n",
"518 Asteroidea hairy\n",
"519 Asteroidea indet\n",
"520 Asteroidea like\n",
"521 Asteroidea long armed\n",
"522 Asteroidea long armed under mud\n",
"523 Asteroidea orange\n",
"524 Asteroidea Orange\n",
"525 Asteroidea orange big\n",
"526 Asteroidea Orange big\n",
"527 Asteroidea Orange long armed\n",
"528 Asteroidea orange star\n",
"529 Asteroidea pale\n",
"530 Asteroidea pale buried\n",
"531 Asteroidea pink\n",
"532 Asteroidea Pink\n",
"533 Asteroidea pink small\n",
"534 Asteroidea pinkish\n",
"535 Asteroidea pontaster like\n",
"536 Asteroidea purple\n",
"537 Asteroidea red\n",
"538 Asteroidea Red\n",
"539 Asteroidea red big\n",
"540 Asteroidea red buried\n",
"541 Asteroidea redbrown\n",
"542 Asteroidea small\n",
"543 Asteroidea small orange\n",
"544 Asteroidea small violet\n",
"545 Asteroidea small yellow\n",
"546 Asteroidea Stichastrella like\n",
"547 Asteroidea violet\n",
"548 Asteroidea white\n",
"549 Asteroidea White\n",
"550 Asteroidea white big\n",
"551 Asteroidea White burried\n",
"552 Asteroidea white burrowed\n",
"553 Asteroidea white fat\n",
"554 Asteroidea White fat short armed\n",
"555 Asteroidea White large\n",
"556 Asteroidea white orange\n",
"557 Asteroidea white small\n",
"558 Asteroidea White small\n",
"559 Asteroidea White small thin\n",
"560 Asteroidea whiteiney\n",
"561 Asteroidea White thin arms\n",
"562 Asteroidea white yellow arms\n",
"563 Asteroidea white yellow buried\n",
"564 asteroidea yellow\n",
"565 Asteroidea yellow\n",
"566 Asteroidea Yellow\n",
"567 Asteroidea yellow fat\n",
"568 Asteroidea(pink)\n",
"569 Asteroidea white Poraniomorpha or Ceramaster\n",
"570 Asteroideaorange\n",
"571 Asteroideaviolet\n",
"572 Asteroideawhite\n",
"573 Asteroideayellow\n",
"574 Asteroidea?\n",
"575 Asteroidea? (Yellow)\n",
"576 Asteronix loveni\n",
"577 Asteronyx loveni\n",
"578 Asterozoa\n",
"579 Astropecten\n",
"580 Astropecten ?\n",
"581 Astropecten?\n",
"582 Astropectenidae\n",
"583 Astropectinidae\n",
"584 Astrorhiza\n",
"585 Astrorhiza percenatge\n",
"586 Astrorhiza age\n",
"587 athozoa on porifera\n",
"588 Axinella-like\n",
"589 Axinella -like\n",
"590 Axinella ?\n",
"591 Axinella broken\n",
"592 Axinella infundibuiliformis\n",
"593 Axinella infundibuiliformis-like\n",
"594 Axinella infundibuliformis\n",
"595 Axinella infundibuliformis fragment\n",
"596 Axinella like\n",
"597 Axinella\n",
"598 Axinella small\n",
"599 Axinellap\n",
"600 Axinellap?\n",
"601 Axinella ventilabrum\n",
"602 Axinellas pp?\n",
"603 Axinellidae\n",
"604 bacteria mat\n",
"605 Bacteria mat\n",
"606 bacteria mat (whie)\n",
"607 Bacteria mat ?\n",
"608 Bacterial mat\n",
"609 bacterial mat (white)\n",
"610 Bacterial mat ?\n",
"611 Bacterial mat?\n",
"612 bacterial math\n",
"613 Bacterial math?\n",
"614 Bacterial mats\n",
"615 bacterial mats (white)\n",
"616 bacterial matt (white)\n",
"617 bacterial matt (white)?\n",
"618 bacterial matt (white)? white patch on sediment\n",
"619 Bacterial stripe\n",
"620 Balanidae\n",
"621 Balanoidea\n",
"622 Balanous balanus\n",
"623 Balanus\n",
"624 Balticina\n",
"625 barnacle\n",
"626 Barnacle\n",
"627 Bathibyaster\n",
"628 Bathyarca\n",
"629 Bathybiaster riding on campod foot\n",
"630 Bathybiaster vexillifer\n",
"631 Bathycarii\n",
"632 Bathycrinus carpenterii\n",
"633 Bathyocaris\n",
"634 Bathyplotes natans\n",
"635 Bathyplotes or Parastichopus\n",
"636 Bathypolypus\n",
"637 Bathypolypus arcticus\n",
"638 Bathyrajainicauda\n",
"639 Bathyrajairicauda\n",
"640 Becterial mat\n",
"641 Benthic medisa over seabed\n",
"642 Benthic Medusa\n",
"643 benthic medusa brown\n",
"644 Big comet tale\n",
"645 bioturbation (fresh)\n",
"646 bioturbation fresh\n",
"647 Bivalia on rock?\n",
"648 Bivalivia\n",
"649 bivalvia\n",
"650 Bivalvia\n",
"651 Bivalvia (Chlamys?)\n",
"652 Bivalvia siphon\n",
"653 Bivalvia small\n",
"654 Bivalvia( Cardiidae)\n",
"655 Bivalvia?\n",
"656 blomsterreke\n",
"657 Bobbins balls\n",
"658 Bolocaerap\n",
"659 Bolocera 2\n",
"660 Bolocera like\n",
"661 Bolocerap\n",
"662 Bolocerap?\n",
"663 Bolocera tuediae\n",
"664 Bonellia\n",
"665 Bonellia virdis\n",
"666 Bonellia viridis\n",
"667 Bonellia viridis?\n",
"668 Bonelliidae\n",
"669 Boreomysis\n",
"670 Boreomysis shadow\n",
"671 Boreomysis with eggs-parasite\n",
"672 Boreomysis with parasiste\n",
"673 Boreomysis with parasite\n",
"674 Bothidae\n",
"675 Botrylloidea\n",
"676 Botrylloides\n",
"677 Botryllus\n",
"678 Bottle\n",
"679 Bourgeticrina\n",
"680 Bourgeticrinina\n",
"681 Bourgueticrinidae\n",
"682 Bourgueticrinina\n",
"683 Bracachiopoda\n",
"684 Brachiopoda\n",
"685 Brachiopoda-like\n",
"686 Brachiopoda (crania)\n",
"687 Brachiopoda ?\n",
"688 Brachiopoda crania\n",
"689 Brachiopoda Craniforma\n",
"690 Brachiopoda density\n",
"691 Brachiopoda on Rhizocrinus\n",
"692 Brachiopodap\n",
"693 Brachyura\n",
"694 Brachyura ?\n",
"695 Brachyura small\n",
"696 Brada\n",
"697 branched tubes\n",
"698 Brdasp\n",
"699 Breiflabb\n",
"700 bright white (2-3cm)\n",
"701 bright white (3cm)\n",
"702 Brisingida\n",
"703 Brisingida-like\n",
"704 Brosme ?\n",
"705 Brosme brosme\n",
"706 Brosme brosme?\n",
"707 brown tubes on Rhizocrinus\n",
"708 Bryocryptellidae (Porella like-white)\n",
"709 Bryooa encrusting\n",
"710 bryozoa\n",
"711 Bryozoa\n",
"712 Bryozoa (Cheilostomata)\n",
"713 Bryozoa (Cheilostomatida)\n",
"714 Bryozoa (encrusting)\n",
"715 Bryozoa (encrusting) pink\n",
"716 Bryozoa (Sertella)\n",
"717 Bryozoa (Sertella?)\n",
"718 Bryozoa (thick branches)\n",
"719 Bryozoa (Tubuliporina)\n",
"720 Bryozoa (upside down broom stick)?\n",
"721 Bryozoa (upsite down broom)\n",
"722 Bryozoa ?\n",
"723 Bryozoa Ascophora branching\n",
"724 Bryozoa branched\n",
"725 Bryozoa branched (maybe dead)\n",
"726 Bryozoa branched ?\n",
"727 Bryozoa branched calareous\n",
"728 Bryozoa branched calcareous\n",
"729 Bryozoa branched calcareus\n",
"730 Bryozoa branched calcarius\n",
"731 Bryozoa branched comb\n",
"732 Bryozoa branched cyclostomata\n",
"733 Bryozoa branched like\n",
"734 Bryozoa branched thick\n",
"735 Bryozoa branched thin\n",
"736 Bryozoa branched white\n",
"737 Bryozoa branches orange\n",
"738 Bryozoa branching\n",
"739 Bryozoa bush\n",
"740 Bryozoa bush ?\n",
"741 Bryozoa button\n",
"742 Bryozoa Caberea\n",
"743 Bryozoa calacareous branched\n",
"744 Bryozoa calcareos\n",
"745 Bryozoa calcareous\n",
"746 Bryozoa calcareous brancehd\n",
"747 Bryozoa calcareous branch\n",
"748 Bryozoa calcareous branched\n",
"749 Bryozoa calcareous branched Percent\n",
"750 Bryozoa calcareous branched thick\n",
"751 Bryozoa calcareous thick\n",
"752 Bryozoa calcareous tree\n",
"753 Bryozoa calcareous white\n",
"754 Bryozoa calcarious thick\n",
"755 Bryozoa calcarous branched\n",
"756 Bryozoa calcarreous branched\n",
"757 Bryozoa Cheilostomata\n",
"758 bryozoa comb\n",
"759 Bryozoa coral\n",
"760 Bryozoa crown\n",
"761 Bryozoa cyclostomata\n",
"762 Bryozoa encrusing\n",
"763 bryozoa encrusting\n",
"764 Bryozoa encrusting\n",
"765 bryozoa encrusting white\n",
"766 Bryozoa encrusting white\n",
"767 Bryozoa encrusting yellow\n",
"768 Bryozoa encrusting pink\n",
"769 Bryozoa erect\n",
"770 Bryozoa erect (Sertella?)\n",
"771 Bryozoa errect Sertella\n",
"772 bryozoa flat\n",
"773 Bryozoa flat\n",
"774 Bryozoa flat flake like\n",
"775 Bryozoa flat stalk\n",
"776 Bryozoa flustra\n",
"777 Bryozoa flustra like\n",
"778 Bryozoa gyro\n",
"779 Bryozoa Hornera\n",
"780 Bryozoa indet\n",
"781 Bryozoa krone\n",
"782 Bryozoa Sertella?\n",
"783 Bryozoa soft branched\n",
"784 Bryozoa soft bush\n",
"785 Bryozoa soft pillow\n",
"786 Bryozoa thick branch\n",
"787 Bryozoa thick branched\n",
"788 bryozoa tree like\n",
"789 Bryozoa tree like\n",
"790 Bryozoa Tubuliporina\n",
"791 Bryozoa various\n",
"792 Bryozoa white\n",
"793 Bryozoa white branched\n",
"794 Bryozoa white encrusting\n",
"795 Bryozoa yellow\n",
"796 Bryozoa, encrusting\n",
"797 Bryozoa, Filograna-like\n",
"798 Bryozoa, Flustra-like\n",
"799 Bryozoa, Reteporella like\n",
"800 Bryozoa, Sertella-like\n",
"801 Bryozoa, Stylasteriade-like\n",
"802 Bryozoa, Stylasteridae-like\n",
"803 Bryozoa? Filograna on boulder\n",
"804 Bryozoan on pebble\n",
"805 Bryozoan or Hydrozoa?\n",
"806 Bryozooa\n",
"807 Buccinidae\n",
"808 Buccinum\n",
"809 Buccinum fragile\n",
"810 Buccinum hydrophanum\n",
"811 buccinum undatum\n",
"812 Buccinum undatum\n",
"813 Buccium\n",
"814 Bulldozing by actiniaria pink\n",
"815 Bulldozing by echinoderms\n",
"816 Bulldozing by unknown\n",
"817 bulldozing trail (urchin)\n",
"818 bulldozing trail (urchin?)\n",
"819 burr\n",
"820 burrow\n",
"821 Burrow\n",
"822 Burrow (big cave like)\n",
"823 Burrow (big cave like) wirh teleostei\n",
"824 Burrow (big)\n",
"825 Burrow (depression like)\n",
"826 Burrow (oval)\n",
"827 Burrow (oval) in group\n",
"828 Burrow (oval) in group in trawl mark\n",
"829 Burrow (oval) in trawl mark\n",
"830 Burrow (small cave like)\n",
"831 Burrow (small cave like) whith crustacea\n",
"832 Burrow (small in group)\n",
"833 Burrow (small in row)\n",
"834 Burrow (small)\n",
"835 Burrow (søkk)\n",
"836 Burrow big\n",
"837 Burrow big cave\n",
"838 Burrow big cave (40cm diam)\n",
"839 Burrow big cave like\n",
"840 Burrow big cave like in group\n",
"841 Burrow big caves\n",
"842 Burrow big whit small burrows in\n",
"843 Burrow cave like\n",
"844 Burrow large\n",
"845 Burrow medium cave\n",
"846 Burrow medium cave like\n",
"847 Burrow oval\n",
"848 Burrow oval cave\n",
"849 Burrow oval in group\n",
"850 Burrow oval with Munida\n",
"851 burrow sand mount\n",
"852 Burrow sand mount\n",
"853 Burrow small\n",
"854 Burrow small (søkk)\n",
"855 Burrow small cave\n",
"856 Burrow small cave like\n",
"857 Burrow small cave like\n",
"858 Burrow small cave med overbygg\n",
"859 Burrow small cave with Munida\n",
"860 Burrow small cavea\n",
"861 Burrow small caves\n",
"862 Burrow small depression\n",
"863 Burrow small in group\n",
"864 Burrow small in row\n",
"865 Burrow small round\n",
"866 Burrow small sand tipi\n",
"1 Burrow with crustacean\n",
"2 Burrow sand tipi\n",
"3 Burrow big\n",
"4 Burrow big cave\n",
"5 Burrow in group\n",
"6 Burrow oval in group\n",
"7 Burrow sand mound\n",
"8 Burrow small\n",
"9 Burrowbig\n",
"10 Burrowsand mound\n",
"11 Burrowvulcano\n",
"12 burrows\n",
"13 Burrows\n",
"14 burrows (group)\n",
"15 Burrows (small)\n",
"16 Burrows (small) in patches\n",
"17 Burrows (small) with crustacean\n",
"18 Burrows big\n",
"19 Burrows big caves med overbygg\n",
"20 Burrows big cave\n",
"21 burrows group\n",
"22 Burrows in burrow\n",
"23 Burrows medium cave\n",
"24 Burrows mound\n",
"25 Burrows oval small in group\n",
"26 Burrows round weird looking\n",
"27 burrows small\n",
"28 Burrows small\n",
"29 Burrows small cave\n",
"30 Burrows small density\n",
"31 Burrows small Density\n",
"32 Burrows small in comp sed\n",
"33 Burrows small in group\n",
"34 Burrows small in trawl mark\n",
"35 Burrows small in trawl mark wall\n",
"36 Burrows small oval\n",
"37 Burrows small oval in group\n",
"38 Burrows small sand tipi\n",
"39 Burrows small Sand tipi\n",
"40 Burrows small skorstein\n",
"41 Burrows small sticking out of wall of comp sed\n",
"42 Burrows small tunnel\n",
"43 Burrows small with animal\n",
"44 Burrows small amphipod burrow\n",
"45 Burrows small amphipoda burrow\n",
"46 Burrows small apartment\n",
"47 Burrows small appartment\n",
"48 Burrows small cave building\n",
"49 Burrows small cave like\n",
"50 Burrows small mound\n",
"51 Burrows small mounts\n",
"52 Burrows small Neohela cave\n",
"53 Burrows small vulcano\n",
"54 Burrows smallapartment\n",
"55 Burrows smallin group\n",
"56 Burrows smallsand mound\n",
"57 Burrows smallsand tipi\n",
"58 Burrows søkk\n",
"59 Burrows sand tipi\n",
"60 Burrowsbig cave\n",
"61 Bush\n",
"62 Bush unidentified\n",
"63 Bythocaris\n",
"64 Bythocaris galloping\n",
"65 Bythocaris white dot\n",
"66 Bythocaris whiteot\n",
"67 Bythocaris with parasite?\n",
"68 bytocaris\n",
"69 Bytocaris\n",
"70 Bytocaris with eggmass\n",
"71 Caberea ellisii\n",
"72 Cable\n",
"73 Calathura brachiata\n",
"74 Calathura\n",
"75 Calcarious encrusting\n",
"76 Calcarious indet white\n",
"77 Calcerous tube\n",
"78 Calcerous tubes\n",
"79 Calliostoma\n",
"80 Calliostoma occidentale\n",
"81 Calliostopma\n",
"82 Calmys\n",
"83 cancer\n",
"84 Cancer pagurus\n",
"85 Candelabrum\n",
"86 Candelabrum ?\n",
"87 Candelabrum like\n",
"88 Candelabrum like small\n",
"89 Canser pagurus\n",
"90 Canser Pagurus\n",
"91 Capelin dead\n",
"92 caprella\n",
"93 Caprella\n",
"94 Caprellidae\n",
"95 Careproctus\n",
"96 Careproctus reinhardti\n",
"97 Caridea\n",
"98 Caridea-like\n",
"99 Caridea like\n",
"100 Caridea red\n",
"101 Caulophacus-like\n",
"102 Caulophacus arcticus\n",
"103 Caulophacus arcticus (brown)\n",
"104 Caulophacus arcticus fallen\n",
"105 Caulophacus arcticus?\n",
"106 Caulophacus stilk\n",
"107 cellepora\n",
"108 Cellepora\n",
"109 Cephalopoda\n",
"110 Cephalopoda benthic\n",
"111 Cephalopoda pelagic\n",
"112 Cephalopoda shadow?\n",
"113 Ceramaster-like\n",
"114 Ceramaster ?\n",
"115 Ceramaster granularis\n",
"116 Ceramaster granularis (?)\n",
"117 Ceramaster granularis white\n",
"118 Ceramaster granularis yellow\n",
"119 Ceramaster like\n",
"120 Ceramaster or Hippasteria\n",
"121 Ceramaster?\n",
"122 Ceramaster7psaudarchaster\n",
"123 Cerianthidae\n",
"124 Cerianthidae (light coloured)\n",
"125 Cerianthidae ?\n",
"126 Cerianthidae dark\n",
"127 Cerianthidae dark redish\n",
"128 Cerianthidae green tentacle disk\n",
"129 Cerianthidae like\n",
"130 Cerianthidae like white\n",
"131 Cerianthidae pale\n",
"132 Cerianthidae red\n",
"133 Cerianthidae small\n",
"134 Cerianthidae small dark\n",
"135 Cerianthidae small dark redish\n",
"136 Cerianthidae small violet\n",
"137 Cerianthidae small white\n",
"138 Cerianthidaep\n",
"139 Cerianthidaep?\n",
"140 Cerianthidae violet\n",
"141 Cerianthidae white\n",
"142 Cerianthidae dark dark\n",
"143 Cerianthidaedark\n",
"144 Cerianthidaeviolet\n",
"145 Cerianthidae?\n",
"146 Cerianthus vogti\n",
"147 Ceriantida\n",
"148 Ceriantida like\n",
"149 Ceriantidae\n",
"150 Ceriantidae (dark\n",
"151 Ceriantidae (dark)\n",
"152 Ceriantidae (dark long stolun)\n",
"153 Ceriantidae (pink)\n",
"154 Ceriantidae (small dark redish)\n",
"155 Ceriantidae (small dark)\n",
"156 Ceriantidae (white)\n",
"157 Ceriantidae dark\n",
"158 Ceriantidae small dark\n",
"159 Ceriantidae?\n",
"160 Ceriantidea\n",
"161 Ceriantidea (violet)\n",
"162 Ceriantidea (white)\n",
"163 Ceriantidea red\n",
"164 Ceriantidea violet\n",
"165 Certella\n",
"166 Cetnophora bentic\n",
"167 Chaetopterus\n",
"168 Chaetopterus tubes\n",
"169 Cheilostomatida\n",
"170 Chelonaplysilla\n",
"171 Chimaera monstrosa\n",
"172 Chimaera monstrosajuv\n",
"173 Chimaerap\n",
"174 Chimneys\n",
"175 chionoecetes opilio\n",
"176 Chionoecetes opilio\n",
"177 Chionoecetes opilio+W3391\n",
"178 Chiton\n",
"179 chitons\n",
"180 Chitons\n",
"181 Chlamys\n",
"182 Chlamys islandica\n",
"183 Chlamysp\n",
"184 chondrocladia\n",
"185 Chondrocladia\n",
"186 Chondrocladia giganta\n",
"187 Chondrocladia gigantea\n",
"188 cidaris\n",
"189 Cidaris cidaris\n",
"190 Cidaris cidaris\n",
"191 Ciliatocardium ciliatum\n",
"192 Ciona intestinalis\n",
"193 Ciphonoecetes\n",
"194 Cirolanidae\n",
"195 Cirratulidae ? tentacles\n",
"196 Cirripdeia?\n",
"197 Cirripedia\n",
"198 Cirripedia small\n",
"199 Cladorhiza gelida\n",
"200 Cladorhiza gelida ( Hexact Stalked branched)\n",
"201 Cladorhiza\n",
"202 Cladorhiza thick\n",
"203 Cladorhiza thick branched\n",
"204 Cladorhiza thick stalk\n",
"205 Cladorhiza thick stalks\n",
"206 Cladorhizidae bottlebrush\n",
"207 Cladorhizidae brancehd\n",
"208 Cladorhizidae brancehed\n",
"209 Cladorhizidae branched\n",
"210 Cladorhizidae bush\n",
"211 clamys\n",
"212 Clamys\n",
"213 Clamys Sp\n",
"214 Clavularia borealis\n",
"215 cleippedes\n",
"216 Cleippides quadricuspis\n",
"217 Clitellata on fish eye\n",
"218 Clupea harengus\n",
"219 Clupea\n",
"220 cnidaria\n",
"221 Cnidaria\n",
"222 cnidaria solitary yellow\n",
"223 Coleoidea\n",
"224 Collosendeis\n",
"225 Collossendeis\n",
"226 Colossendeis\n",
"227 Colossendeis angusta\n",
"228 Colossendeis proboscidea\n",
"229 Colus sabini\n",
"230 Colus\n",
"231 Comatulidae\n",
"232 conica\n",
"233 Conica\n",
"234 Conocrinus lofotensis\n",
"235 Corallinales\n",
"236 Corella parallelogramma\n",
"237 Cornuspiroides\n",
"238 corophiidaae\n",
"239 Corymorpha\n",
"240 Corymorpha (sandy stalk)\n",
"241 Corymorpha = Tubularia\n",
"242 Corymorpha big\n",
"243 Corymorpha glacialis\n",
"244 Corymorpha like\n",
"245 Corymorpha nutans\n",
"246 Corymorpha sandy stalk\n",
"247 Corymorpha small\n",
"248 Corymorpha tubes?\n",
"249 Corymorpha with amphipoda\n",
"250 Corymorpha?\n",
"251 Coryphaenoides rupestris\n",
"252 cottidae\n",
"253 Cottidae\n",
"254 Cottidae ?\n",
"255 Cottidae like\n",
"256 Cottunculus microps\n",
"257 Cottunculus micropsis\n",
"258 crab\n",
"259 crab = hyas\n",
"260 Crangon\n",
"261 crangonidae\n",
"262 Crangonidae\n",
"263 Crangonidae 5 arms\n",
"264 Crangonidea on phakelia\n",
"265 Crania\n",
"266 Crania anomalia\n",
"267 Craniella\n",
"268 Craniella like\n",
"269 Craniella zetlandica\n",
"270 Craniella zetlandica ?\n",
"271 Crawling track\n",
"272 Crinoidae\n",
"273 crinoidea\n",
"274 Crinoidea\n",
"275 Crinoidea- unstalked\n",
"276 Crinoidea- unstalked brown like\n",
"277 Crinoidea feathery\n",
"278 Crinoidea like\n",
"279 Crinoidea small stalked\n",
"280 Crinoidea stalk\n",
"281 Crinoidea stalked\n",
"282 Crinoidea unstalked\n",
"283 crisia\n",
"284 Crisia\n",
"285 crisidae\n",
"286 Crisiidae\n",
"287 Cromatidae\n",
"288 Crossaster papposus\n",
"289 Crossaster\n",
"290 Crossasterp?\n",
"291 Crossaster squamatus\n",
"292 Crossaster?\n",
"293 Crossing cables\n",
"294 crustacea\n",
"295 Crustacea\n",
"296 Crustacea in burrow\n",
"297 Crustacea red\n",
"298 crustacean in cave\n",
"299 Crustacean in hole\n",
"300 Ctenodiscus crispatus\n",
"301 Ctenodiscus like\n",
"302 Ctenophora\n",
"303 Ctenophora benthic\n",
"304 Ctenophora benthic (devil)\n",
"305 Ctenophora bentic\n",
"306 ctenophora bentic (djevel)\n",
"307 Ctenophora big\n",
"308 Ctenophora bottom dwelling\n",
"309 Ctenophora like\n",
"310 Ctenophora purple\n",
"311 Ctenophora shadow\n",
"312 Cucumaria fondosa\n",
"313 Cucumaria frondosa\n",
"314 Cucumaria prondosa\n",
"315 Cumacea\n",
"316 Cyathura\n",
"317 Cyatura\n",
"318 Cyclopteridae\n",
"319 Cyclopterus lumpus\n",
"320 Dallina septigera\n",
"321 Dead Lophelia pertusa\n",
"322 Dead teleost\n",
"323 Decapoda\n",
"324 Decapoda crab\n",
"325 Decapoda Natantia\n",
"326 Decapoda red under rocks\n",
"327 deep sea medusa\n",
"328 deep sea Medusa\n",
"329 Deep sea medusa\n",
"330 Deep sea Medusa\n",
"331 deep sea medusae\n",
"332 deep sea meduse\n",
"333 Deep sea meduse\n",
"334 Deep sea meduse red\n",
"335 Deep seea meduse red\n",
"336 deepsea meduse\n",
"337 Deepsea meduse\n",
"338 Defrancia lucernaria\n",
"339 Defrancia lusernaria\n",
"340 Dendbeania\n",
"341 dendrobeania\n",
"342 Dendrobeania\n",
"343 Dendrobeania Percent\n",
"344 DendrobeaniaPercent\n",
"345 Dendrobenania\n",
"346 Dendrochirotida\n",
"347 Dendrodoa aggrega\n",
"348 Dendrodoa aggregata\n",
"349 endrodoa aggregata aggregata\n",
"350 endrodoa aggregata\n",
"351 Dendronotidae\n",
"352 Dendronotinae\n",
"353 Dendronotur\n",
"354 Dendronotus\n",
"355 Dendrotnotus\n",
"356 Denronotidae\n",
"357 depression in ground\n",
"358 depressions\n",
"359 Desmarestia\n",
"360 Diatrupa\n",
"361 Didemnidae\n",
"362 Didemnidae pink\n",
"363 Didemnum\n",
"364 Digging porifera bat?\n",
"365 Diplopteraster multipes\n",
"366 Dipturus oxyrinchus\n",
"367 Disporella\n",
"368 Disturbed sediment\n",
"369 ditrupa\n",
"370 Ditrupa\n",
"371 Ditrupa ?\n",
"372 Ditrupa 2\n",
"373 Ditrupa arietina\n",
"374 itrupa\n",
"375 Ditrupa D m2\n",
"376 Ditrupa like\n",
"377 Ditrupa shells\n",
"378 Ditrupa tubes\n",
"379 Ditrupa tubes or alive?\n",
"380 Ditrupatubes\n",
"381 Ditrupa tubes ing sediment, alive?\n",
"382 itrupa tubes\n",
"383 Ditrupa tubes density\n",
"384 ditrupa(dead)\n",
"385 Djevel hydroidae\n",
"386 Djevel hydroidea\n",
"387 Djevelhydroidae\n",
"388 djevelhydroide\n",
"389 Djevelhydroide\n",
"390 Docoglossa\n",
"391 Dorididae\n",
"392 Drifa-like\n",
"393 Drifa ?glomerata\n",
"394 Drifa glomerata\n",
"395 drifa like\n",
"396 Drifa\n",
"397 Duva florida\n",
"398 Duva\n",
"399 uva\n",
"400 Dysidea fragilis\n",
"401 Echinatus acutus\n",
"402 Echinocardium\n",
"403 Echinodea\n",
"404 Echinodea (irregular dark)\n",
"405 Echinoidae (regular)\n",
"406 Echinoidae track\n",
"407 Echinoidea\n",
"408 Echinoidea (irregular)\n",
"409 Echinoidea (regular small dead)\n",
"410 Echinoidea (regular)\n",
"411 Echinoidea (regular) ?\n",
"412 Echinoidea (regular) like\n",
"413 Echinoidea (white empty testes?)\n",
"414 Echinoidea (white with redines)\n",
"415 Echinoidea (white with yellowines)\n",
"416 Echinoidea ?\n",
"417 Echinoidea acutus\n",
"418 Echinoidea big (10cm)\n",
"419 Echinoidea big trackmaking\n",
"420 Echinoidea dark purple\n",
"421 Echinoidea irregaular white (empty testes?)\n",
"422 Echinoidea irregular\n",
"423 Echinoidea irregular dark\n",
"424 Echinoidea irregular dark purple\n",
"425 Echinoidea irregular dark purple (Spartangus purpureus?)\n",
"426 Echinoidea irregular dark purple (spartangus)\n",
"427 Echinoidea irregular dark purple (spartangus?)\n",
"428 Echinoidea irregular dark purple (Spartangus?)\n",
"429 Echinoidea irregular dark purple(Spartangus\n",
"430 Echinoidea irregular violet\n",
"431 Echinoidea irregular white\n",
"432 Echinoidea irregular white?\n",
"433 Echinoidea regular\n",
"434 Echinoidea regular ?\n",
"435 Echinoidea track\n",
"436 Echinoidea white\n",
"437 Echinoides esculentus\n",
"438 Echinus\n",
"439 Echinus acutus\n",
"440 Echinus acutus (Juv)\n",
"441 Echinus acutus D m2\n",
"442 Echinus dead\n",
"443 Echinus esculentus\n",
"444 Echinus esculenus\n",
"445 Echiuira\n",
"446 Echiura\n",
"447 Echiuridae\n",
"448 Echiuroidae\n",
"449 Echiuroidea\n",
"450 Edwardsiidae\n",
"451 eelpout\n",
"452 egg\n",
"453 Egg capsule\n",
"454 Egg mass\n",
"455 Egg of Neptunea\n",
"456 Eggcapsule Nactacidae\n",
"457 Eggcapsule buccinum\n",
"458 Eggcapsules\n",
"459 eggmass\n",
"460 Eggmass like\n",
"461 Eggs of Prosobranchiata\n",
"462 Elpidia glacialis\n",
"463 Elpidia?\n",
"464 Emarginula\n",
"465 Enchelyopus cimbrius\n",
"466 Encrusting green\n",
"467 Encrusting greenblue\n",
"468 Encrusting life indet Percent\n",
"469 encrusting pink\n",
"470 Encrusting pink\n",
"471 encrusting red\n",
"472 Encrusting white\n",
"473 Enteropneusta\n",
"474 Ephimera\n",
"475 epi actiniaria\n",
"476 Epi Actiniaria\n",
"477 Epiactiniaria\n",
"478 Epihimera\n",
"479 Epimera loricata\n",
"480 Epimeria\n",
"481 Epimeriidae\n",
"482 Epitonium ?\n",
"483 Epitonium clathrus\n",
"484 Epitonum\n",
"485 Epizoanthidae on paguridae\n",
"486 Epizoanthus\n",
"487 Epizoanthus_on Paguridae\n",
"488 epizooanthidae on Paguridae\n",
"489 Epizooanthidae on Paguridae\n",
"490 Epizooanthodaep\n",
"491 Erythropinae\n",
"492 Etmopterusinax\n",
"493 Etmopterusinax (Svarth?)\n",
"494 Eucratea loricata\n",
"495 eunice norvegica\n",
"496 Eunice norvegica\n",
"497 Eunicidae\n",
"498 Euphasiacea\n",
"499 Euphausiacea\n",
"500 Euphrosine\n",
"501 Eurycope\n",
"502 Exidmonea\n",
"503 Faecel coil polychaeta\n",
"504 Faecel coil polychaetae\n",
"505 Faecel coils holothurians\n",
"506 Faeces\n",
"507 Faeces coils holothurians\n",
"508 Farrea\n",
"509 Farrea like\n",
"510 Farrea occa\n",
"511 Feces\n",
"512 Filifera\n",
"513 Filograna fragments\n",
"514 Filograna implexa\n",
"515 Filograna implexa fragment\n",
"516 Filograna implexa like\n",
"517 Filograna implexa Percent\n",
"518 Filograna like\n",
"519 Filograna\n",
"520 fish\n",
"521 Fish in big cave\n",
"522 Fish in cave\n",
"523 fishing gear\n",
"524 Fishing gear\n",
"525 Fishing Gear\n",
"526 fishing gear (rope)\n",
"527 fishing gear (wire)\n",
"528 fishing gear trawl wire\n",
"529 fishing line\n",
"530 Fishing line\n",
"531 Fishing net\n",
"532 Fishing net with line\n",
"533 Fishingear\n",
"534 Fishingear (btis from a trawl)\n",
"535 Fishingear gillnet\n",
"536 Fishingear line\n",
"537 Flabellina\n",
"538 Flabellum ?\n",
"539 Flabellum\n",
"540 Flabellum like\n",
"541 Flabellum macandrewi\n",
"542 Flabellum macandrewi or Fungicyathus?\n",
"543 Flabellum macandrewi?\n",
"544 Flabellum macandrewi???\n",
"545 Flat fish\n",
"546 flatfish\n",
"547 Flatfish\n",
"548 Flatfish rocket\n",
"549 Flekksteinbit\n",
"550 flounder\n",
"551 Flounder\n",
"552 Flustidae\n",
"553 Flustra\n",
"554 Flustra ?\n",
"555 Flustra like\n",
"556 Flustra?\n",
"557 flustridae\n",
"558 Flustridae\n",
"559 Flustridae?\n",
"560 Flustrina\n",
"561 Flyffy porifera tunicata like\n",
"562 Foram Sand amobe\n",
"563 Foram white globular\n",
"564 Foraminfera snail\n",
"565 Foraminifera\n",
"566 Foraminifera (agglutinated)\n",
"567 Foraminifera (amøbe)\n",
"568 Foraminifera (arborescent)?\n",
"569 Foraminifera (astrorhiza)\n",
"570 Foraminifera (calcareous)\n",
"571 Foraminifera (Calcareous)\n",
"572 Foraminifera (pelosina arborescens)\n",
"573 Foraminifera (sand abøbe)\n",
"574 Foraminifera (sand amøbe)\n",
"575 Foraminifera (sand)\n",
"576 Foraminifera (sand) amøbe\n",
"577 foraminifera (White dots in sand)\n",
"578 Foraminifera (white globular)\n",
"579 Foraminifera (white small)\n",
"580 Foraminifera agglutinated\n",
"581 Foraminifera agglutinated Percent\n",
"582 Foraminifera agglutinated with calcareous\n",
"583 Foraminifera agglutinating\n",
"584 foraminifera agglutining branched\n",
"585 Foraminifera aglutinated\n",
"586 Foraminifera amobe\n",
"587 Foraminifera brown agglutinated\n",
"588 Foraminifera brown globular\n",
"589 Foraminifera calcareous\n",
"590 Foraminifera calcareous ?\n",
"591 Foraminifera calcareous big\n",
"592 Foraminifera calcareous D 200\n",
"593 Foraminifera calcareous on hyas\n",
"594 Foraminifera calcareous age\n",
"595 Foraminifera calcareous white globular\n",
"596 Foraminifera calcareous white globular Density\n",
"597 Foraminifera calcareous white globular Percent\n",
"598 Foraminifera calcareousD 1000\n",
"599 Foraminifera orange globular\n",
"600 Foraminifera sand\n",
"601 Foraminifera sand amoeba\n",
"602 Foraminifera sand amøbe\n",
"603 Foraminifera snail\n",
"604 Foraminifera white dots\n",
"605 Foraminifera white globular\n",
"606 Foraminifera white golbular\n",
"607 Foraminifera white on Umbellula\n",
"608 Foraminifera white small\n",
"609 Foraminifera white snail\n",
"610 Foraminifera?\n",
"611 Fungiacyathus fragilis\n",
"612 Fungiacyathus fragilis?\n",
"613 funiculina aquadrangularis\n",
"614 Funiculina quadrangularis\n",
"615 fuzzy sediment balls (Xenophyophora?)\n",
"616 fuzzy sediment balls (Xenophyophyophores?)\n",
"617 Gadeidae\n",
"618 Gadhus morhua\n",
"619 Gadiculus argenteus\n",
"620 Gadiculus argenteus s?lvtorsk\n",
"621 Gadiculus argenteus solvtorsk\n",
"622 Gadiculus argenteus thori\n",
"623 Gadidae\n",
"624 Gadidae 1\n",
"625 gadide\n",
"626 Gadoidae\n",
"627 gadus morhua\n",
"628 Gadus morhua\n",
"629 Gadus morhua?\n",
"630 Gaidropsarus argentatus\n",
"631 Galateidea\n",
"632 Galathea\n",
"633 Galatheidae\n",
"634 Galatheidaep\n",
"635 Galatheidaep?\n",
"636 Galatheoidea\n",
"637 Galeus melastomus\n",
"638 Galeus melastomus (H?gjel)\n",
"639 Gammaridae\n",
"640 Gammaroidea\n",
"641 Gastopoda\n",
"642 Gastropoda\n",
"643 Gastropoda- egg mass\n",
"644 Gastropoda- eggmass\n",
"645 Gastropoda-like\n",
"646 Gastropoda (Dead or alive)\n",
"647 Gastropoda (neptunea Dead or alive)\n",
"648 Gastropoda empty shell?\n",
"649 Gastropoda ?\n",
"650 Gastropoda alive or just shell?\n",
"651 Gastropoda alive?\n",
"652 Gastropoda Buccinum\n",
"653 Gastropoda dead or alive\n",
"654 Gastropoda dead or alive?\n",
"655 Gastropoda dead?\n",
"656 Gastropoda eggs\n",
"657 Gastropoda in sand\n",
"658 Gastropoda like\n",
"659 Gastropoda limpet-like\n",
"660 Gastropoda may be dead\n",
"661 Gastropoda Neptunea-like\n",
"662 Gastropoda prosobranchia\n",
"663 Gastropoda shell\n",
"664 Gastropoda shell (dead?)\n",
"665 Gastropoda shell or alive?\n",
"666 Gastropoda white strange\n",
"667 Gastropoda( buccinum undatum)\n",
"668 Gastropoda(Neptunea like)\n",
"669 Gastropoda small\n",
"670 Gastropoda?\n",
"671 Geodia\n",
"672 Geodia-like\n",
"673 Geodia ?\n",
"674 Geodia atlantica\n",
"675 Geodia atlantica like\n",
"676 Geodia baretti\n",
"677 Geodia baretti ?\n",
"678 Geodia baretti like\n",
"679 Geodia barretti\n",
"680 Geodia like\n",
"681 Geodia macandrewi\n",
"682 Geodia macandrewii\n",
"683 Geodia monk\n",
"684 Geodia phlegraei\n",
"685 Geodia flat top\n",
"686 Geodia?\n",
"687 Geodia stelletta\n",
"688 Geodia7isops\n",
"689 gerodia like\n",
"690 Gersemia on rhizocrinus\n",
"691 Gersemia rubiformis\n",
"692 Gersemia\n",
"693 Geryon\n",
"694 Geryon trispinosus\n",
"695 Gibbula\n",
"696 glasponge\n",
"697 Glasponge\n",
"698 glassponge\n",
"699 Glassponge\n",
"700 Glassvamp\n",
"701 Glyptoceophalus cynoglossus\n",
"702 Glyptocephalus cynoglossus\n",
"703 Gobidae\n",
"704 gobiidae\n",
"705 Gobiidae\n",
"706 Gonathus\n",
"707 Gonatus\n",
"708 Gonatus fabricii\n",
"709 Goose barnacles\n",
"710 Gorgonacea\n",
"711 Gorgonocea\n",
"712 Gorgonocea?\n",
"713 Gorgonocephalus\n",
"714 Gorgonocephalusjuv\n",
"715 Gorgononocephalus\n",
"716 Gracilechinus acutus\n",
"717 Gracilechinus acutusjuv\n",
"718 Gracilechinus\n",
"719 Grantia compressa\n",
"720 graskate like\n",
"721 grasteinbit\n",
"722 green hair\n",
"723 Green unidentified\n",
"724 Greenland Halbut\n",
"725 Greenland halibut\n",
"726 Grenadier\n",
"727 Grenadier?\n",
"728 Grimpoteuthis\n",
"729 Halcampa arctica\n",
"730 halcampa artica\n",
"731 Halcampa artica\n",
"732 Halcampa\n",
"733 Halcampia arctica\n",
"734 halcampoides\n",
"735 Halcampoides\n",
"736 Halecium\n",
"737 halibut\n",
"738 Halibut\n",
"739 halibut?\n",
"740 Halicchondria\n",
"741 halichondria?\n",
"742 Halichondria?\n",
"743 Haliclona\n",
"744 Haliclona-like\n",
"745 Haliclona?\n",
"746 Haliclona? on boulder\n",
"747 Halipteris\n",
"748 Halipteris finmarchica\n",
"749 hamingia\n",
"750 Hamingia\n",
"751 Havnål\n",
"752 Heliometra glacialis\n",
"753 Heliometra\n",
"754 Hemichordata\n",
"755 Hemithiris pcittacea\n",
"756 Hemithiris psittacea\n",
"757 Henricia\n",
"758 henricia orange\n",
"759 henricia white\n",
"760 henricia yellow\n",
"761 henrisia orange\n",
"762 henrisia yellow\n",
"763 Heteranomya squamula\n",
"764 hexactinellida\n",
"765 Hexactinellida\n",
"766 Hexactinellida ?\n",
"767 Hexactinellida bottlebrush\n",
"768 Hexactinellida branched\n",
"769 Hexactinellida branched bottlebrush\n",
"770 Hexactinellida branched thin\n",
"771 Hexactinellida bush\n",
"772 Hexactinellida fan shaped\n",
"773 Hexactinellida feather\n",
"774 Hexactinellida irreg\n",
"775 Hexactinellida irregular coral\n",
"776 Hexactinellida leafy\n",
"777 Hexactinellida like\n",
"778 Hexactinellida parabol\n",
"779 Hexactinellida small\n",
"780 Hexactinellidainy bush\n",
"781 Hexactinellida stalk\n",
"782 Hexactinellida stalked\n",
"783 Hexactinellida Stalked\n",
"784 Hexactinellida stalkediny\n",
"785 Hexactinellida stalked wineglass-shaped\n",
"786 Hexactinellida thin\n",
"787 Hexactinellida thin branched\n",
"788 Hexactinellida thin branchediny\n",
"789 Hexactinellida thin long\n",
"790 Hexactinellida tree like\n",
"791 Hexactinellida urn-shaped\n",
"792 Hexactinellida urne\n",
"793 Hexactinellida vedkubbe\n",
"794 Hexactinellida vekubbe\n",
"795 Hexactinellida white branched\n",
"796 Hexactinellida white branched like\n",
"797 Hexactinellida white frynsete\n",
"798 Hexactinellida?\n",
"799 Hexactinellidae\n",
"800 Hexactinellidae bottlebrush\n",
"801 Hexactinellidae branched\n",
"802 Hexactinellidae branched withines\n",
"803 Hexactinellidae cylinder\n",
"804 Hexactinellidae farrea like\n",
"1 Hexactinellidae grey branched\n",
"2 Hexactinellidae stalk\n",
"3 Hexactinellidae stalked\n",
"4 Hexactinellidae thin\n",
"5 hexactinellidae thin branched\n",
"6 Hexactinellidae thin branched\n",
"7 Hexactinellidae thin tree like\n",
"8 Hexactinellidae tree like\n",
"9 Hexactinellidae urneformet\n",
"10 Hexactinellidae white branched\n",
"11 Hexactinellidae white bush\n",
"12 Hexactinellidaewhite branched\n",
"13 Hexactinelllida branched\n",
"14 hexantellida stalk\n",
"15 Hiatella arctica\n",
"16 Hiatella\n",
"17 hipp\n",
"18 Hippasteria ?\n",
"19 Hippasteria like\n",
"20 Hippasteria like white\n",
"21 Hippasteria phrygiana\n",
"22 Hippasteriap\n",
"23 Hippasteriap?\n",
"24 Hippasteria?\n",
"25 Hippasterias ?\n",
"26 Hippasterias like\n",
"27 Hippasterias like White\n",
"28 Hippasteriasp\n",
"29 Hippasteriasp?\n",
"30 Hippasterias(white)\n",
"31 Hippoglossoides platessioides\n",
"32 Hippoglossoides platessoides\n",
"33 Hippoglossus hippoglossus\n",
"34 Hippolythidae\n",
"35 Hippolytidae\n",
"36 Hirudinea\n",
"37 Hirudinea like\n",
"38 Hirudinea white\n",
"39 Hirudinea white brown stripes\n",
"40 Holothuoridea\n",
"41 Holothuria\n",
"42 Holothuria like\n",
"43 Holothuriap\n",
"44 Holothurianp red\n",
"45 Holothuridae (Dendrochiroacea?)\n",
"46 Holothurioidea\n",
"47 Holothurioidea ?\n",
"48 Holothurioidea enil?\n",
"49 Holothurioidea(blå)\n",
"50 Holothuroidae orange\n",
"51 Holothuroidea\n",
"52 Holothuroidea brown\n",
"53 Holothuroidea dark\n",
"54 Holothuroidea pale\n",
"55 Holothuroidea purple\n",
"56 Holothuroidea red\n",
"57 Holothuroidea tentacles\n",
"58 Holothuroidea?\n",
"59 Holothuuroidae orange\n",
"60 Holoturioidea\n",
"61 Hormathia\n",
"62 Hormathia digitata\n",
"63 Hormathia nodosa\n",
"64 Hormathidae\n",
"65 Hormathiidae\n",
"66 Hormathiidae?\n",
"67 Hormatia\n",
"68 Hormatidae\n",
"69 Hormatiidae\n",
"70 hornea\n",
"71 Hornea\n",
"72 Hornea ?\n",
"73 Hornea l\n",
"74 Hornea lichenoides\n",
"75 Hornera\n",
"76 Hornera big\n",
"77 Hornera lichenoides\n",
"78 Hornera like\n",
"79 Horneridae\n",
"80 Horny coral? red\n",
"81 hyalina myxicola\n",
"82 hyalonema\n",
"83 Hyalonema\n",
"84 Hyas\n",
"85 Hyas coarctatus\n",
"86 Hyas?\n",
"87 hydractinia echinata\n",
"88 Hydrocoral whiteor Bryozoa?\n",
"89 hydroidae\n",
"90 Hydroidae branching\n",
"91 Hydroidae on Hexactinellidae\n",
"92 Hydroidae?\n",
"93 Hydroide 1\n",
"94 Hydroidea branched\n",
"95 Hydroidea on Hexactinellidae\n",
"96 Hydroidea on rock\n",
"97 Hydroidea pp\n",
"98 Hydroidea two tentacles\n",
"99 Hydroides branched\n",
"100 Hydroides norvegica\n",
"101 Hydroides norvegicus\n",
"102 Hydroides norwegica\n",
"103 hydrozoa\n",
"104 Hydrozoa\n",
"105 hydrozoa stalk\n",
"106 hydrozoa ( stalk)\n",
"107 hydrozoa ( stalk) on rock\n",
"108 Hydrozoa (branched colony)\n",
"109 Hydrozoa (branched colony) on cobbles\n",
"110 Hydrozoa (branched colony) oncobbles\n",
"111 hydrozoa (branched)\n",
"112 Hydrozoa (bush)\n",
"113 hydrozoa (sandy stalk)\n",
"114 Hydrozoa (sandy stalk)\n",
"115 hydrozoa (stalk)\n",
"116 Hydrozoa (stalk)\n",
"117 hydrozoa (stalk) on rock\n",
"118 Hydrozoa bottlebrush\n",
"119 Hydrozoa branch\n",
"120 Hydrozoa branched\n",
"121 Hydrozoa branching\n",
"122 hydrozoa bush\n",
"123 Hydrozoa bush\n",
"124 Hydrozoa bush like\n",
"125 Hydrozoa bush might be cerianthidae long tentacles\n",
"126 Hydrozoa bush on rock\n",
"127 Hydrozoa bush?\n",
"128 Hydrozoa bushes\n",
"129 Hydrozoa colonies on sediment\n",
"130 Hydrozoa colony single individual\n",
"131 hydrozoa conica\n",
"132 Hydrozoa conica\n",
"133 Hydrozoa feather\n",
"134 Hydrozoa feather like\n",
"135 Hydrozoa indet\n",
"136 Hydrozoa indet ?\n",
"137 Hydrozoa indet bushy\n",
"138 Hydrozoa indet djevelhydroide\n",
"139 Hydrozoa indet feather like\n",
"140 Hydrozoa indet groving on collosendeis\n",
"141 Hydrozoa indet leaf like\n",
"142 Hydrozoa indet long stalked\n",
"143 Hydrozoa indet on polychaetqa tube\n",
"144 Hydrozoa indet on rock\n",
"145 Hydrozoa indet stalk\n",
"146 Hydrozoa indet stalked\n",
"147 Hydrozoa laryx\n",
"148 Hydrozoa m two tentacles\n",
"149 Hydrozoa on rock\n",
"150 Hydrozoa on rocks\n",
"151 Hydrozoa polyp\n",
"152 Hydrozoa sand\n",
"153 hydrozoa sandy stalk\n",
"154 Hydrozoa small bushy\n",
"155 Hydrozoa small stalk\n",
"156 Hydrozoa solitary\n",
"157 hydrozoa stalk\n",
"158 Hydrozoa stalk\n",
"159 Hydrozoa stalk on rock\n",
"160 Hydrozoa stalk short\n",
"161 hydrozoa stalked\n",
"162 Hydrozoa stalked\n",
"163 Hydrozoa stalked indet\n",
"164 Hydrozoa stalked like\n",
"165 Hydrozoa stalked small\n",
"166 Hydrozoa stalks with amphipoda\n",
"167 Hydrozoa three\n",
"168 Hydrozoa tree\n",
"169 Hydrozoa tree like\n",
"170 Hydrozoa(bottle brush)\n",
"171 Hydrozoa(branch)\n",
"172 Hydrozoa(branched)\n",
"173 Hydrozoa(bush big)\n",
"174 Hydrozoa(bush)\n",
"175 Hydrozoa(stalk)\n",
"176 Hydrozoa Lafoea\n",
"177 Hydrozoa on hermit crab\n",
"178 Hydrozoastalked\n",
"179 Hydrozoa?\n",
"180 Hydrozoabush\n",
"181 hyme\n",
"182 Hymedesmia like\n",
"183 Hymedesmia paupertas\n",
"184 Hymedesmia\n",
"185 Hymedesmia?\n",
"186 Hymedesmiaor blue colonial tunicates\n",
"187 Hymedesmiump\n",
"188 Hymenaster like\n",
"189 Hymenaster pellucidus\n",
"190 Hymenaster\n",
"191 Icasterias panopala\n",
"192 Icasterias panopla\n",
"193 Idmidronea\n",
"194 Idmidronea atlantica\n",
"195 Imidronea\n",
"196 incertea sedis\n",
"197 Indet\n",
"198 Infundibulipora lucernaria\n",
"199 Isidella lofotensis\n",
"200 Isodichtya like\n",
"201 Isodicthya like\n",
"202 Isodictya like\n",
"203 Isodictya palmata\n",
"204 Isodictya plamata\n",
"205 Isodyctia palmata\n",
"206 isopoda\n",
"207 Isopoda\n",
"208 Isopoda big\n",
"209 Isopoda big munida like\n",
"210 Isopoda big orange\n",
"211 Isopoda big whiteish\n",
"212 Isopoda housebuilding\n",
"213 Isopoda long antenna pointy ass\n",
"214 Isopoda long leg\n",
"215 Isopoda long legs\n",
"216 Isopoda longleg\n",
"217 Isopoda munida like\n",
"218 Isopoda munopsis like\n",
"219 Isopoda on Chondrocladia\n",
"220 Isopoda on cod\n",
"221 Isopoda on gadidae\n",
"222 Isopoda on Gadidae\n",
"223 Isopoda on Porifera stem\n",
"224 Isopoda on stalk\n",
"225 Isopoda on stalk looks like astacilla\n",
"226 Isopoda on worm\n",
"227 Isopoda small white\n",
"228 Isopodap\n",
"229 Isopoda white\n",
"230 Isopoda white long thin legs\n",
"231 Isopoda white small\n",
"232 Isopoda? white\n",
"233 Isops\n",
"234 Isops like\n",
"235 Jasmineira\n",
"236 Jasmineira tube\n",
"237 Jasmineira tubes\n",
"238 Jeffreysi smittina\n",
"239 Jellyfish\n",
"240 Kanterelleonge\n",
"241 Kinetoskias-like\n",
"242 Kinetoskias like\n",
"243 Kinetoskias smitti\n",
"244 Kinetoskias\n",
"245 kirchenpaueria\n",
"246 Kolga\n",
"247 Kolga-like\n",
"248 kolga?\n",
"249 Kophebolemnum\n",
"250 Kophobelemenon redish\n",
"251 Kophobelemenon (redish)\n",
"252 Kophobelemenon redish\n",
"253 Kophobelemnnon ?\n",
"254 Kophobelemnnon brown\n",
"255 Kophobelemnnon brown? small\n",
"256 Kophobelemnon-like\n",
"257 Kophobelemnon redish\n",
"258 Kophobelemnon (violet)\n",
"259 Kophobelemnon ?\n",
"260 Kophobelemnon like\n",
"261 Kophobelemnon stelliferum\n",
"262 Kophobelemnon violet\n",
"263 Kophobolemnon (violet)\n",
"264 Korallnellik\n",
"265 krill\n",
"266 Kukenthalia borealis\n",
"267 Kukenthalia borealis Percent\n",
"268 Kukenthalia\n",
"269 Kulepetter alcyonacea\n",
"270 kultling\n",
"271 kutling\n",
"272 Lacuna divaricata\n",
"273 lage burrow\n",
"274 Laminaria\n",
"275 Laminariales\n",
"276 lange\n",
"277 Lange\n",
"278 Lanice conchilega\n",
"279 Lanice conchilega?\n",
"280 Lanice like\n",
"281 Lanice\n",
"282 large borrow\n",
"283 large burrow\n",
"284 large burrow (Munida burrows?)\n",
"285 large burrow fresh\n",
"286 large burrows\n",
"287 Latrunculea\n",
"288 Latrunculia\n",
"289 Latrunculia ?\n",
"290 Latrunculia like\n",
"291 Latrunculia orange\n",
"292 Latrunculia yellow\n",
"293 Latrunculina\n",
"294 Lebbeus polaris\n",
"295 Lebenspuren Feces\n",
"296 Lebensspuren\n",
"297 Lebensspuren (spatangoidae)\n",
"298 Lebensspuren bulldosing by echinoderms\n",
"299 Lebensspuren bulldosing by Echinus acutus\n",
"300 Lebensspuren circular \"scratch\"\n",
"301 Lebensspuren echinoderms\n",
"302 Lebensspuren faeces\n",
"303 Lebensspuren faeces from holothurians\n",
"304 Lebensspuren feces\n",
"305 Lebensspuren feces mound\n",
"306 Lebensspuren tracks\n",
"307 Lebensspuren tracks holothuroid\n",
"308 Lebensspuren tracks made by somthing white\n",
"309 Lebensspuren(spatangoids)\n",
"310 Lebetus scorpioides\n",
"311 Lepidorhombus boscii\n",
"312 Lepidorhombus whiffiagonis\n",
"313 Lepidormus boscii\n",
"314 Leptagonus decagonus\n",
"315 Leptasterias\n",
"316 Leptasterias muelleri\n",
"317 leptichaster\n",
"318 Leptoclinus maculatus\n",
"319 Leptychaster arcticus\n",
"320 Leptychaster?\n",
"321 Leucoraja circularis\n",
"322 Lichenophora\n",
"323 Lichenophora ?\n",
"324 Lichenopora\n",
"325 Lichenoporidae\n",
"326 Lichenoporidae like\n",
"327 Limacina\n",
"328 Limaria\n",
"329 Limatula\n",
"330 Limidae\n",
"331 Liparidae\n",
"332 Liparis\n",
"333 Liponema mulitcorne\n",
"334 Liponema multicorne\n",
"335 Liponema multicornis\n",
"336 Lithitamnion\n",
"337 Lithodes maja\n",
"338 Lithodes\n",
"339 Lithodesp\n",
"340 Lithodidae\n",
"341 Lithodidae?\n",
"342 Lithotamnion\n",
"343 Lithotamnion ?\n",
"344 Lithothamnion\n",
"345 Lithothamnion ( )\n",
"346 Lithothamnion ( )spp\n",
"347 Lithothamnion ( )spp ( )\n",
"348 Lithothamnion Percent\n",
"349 Lithothamnionp ( )\n",
"350 Lithothamnionp ( )\n",
"351 Litter\n",
"352 LitterFishingear\n",
"353 LitterHard plastic\n",
"354 LitterMetal\n",
"355 LitterSoft plastic\n",
"356 LitterWire\n",
"357 Long- white soft thin unidentified organism (around 30 cm high)\n",
"358 Long sticks unknown\n",
"359 Long sting again\n",
"360 Long thin string like polycheata 3-4 m??\n",
"361 Long thin string like polycheata??\n",
"362 Lophaster\n",
"363 Lophaster furcifer\n",
"364 Lophelia-like\n",
"365 Lophelia (no of colonies)\n",
"366 Lophelia fragments\n",
"367 Lophelia pertusa\n",
"368 Lophius\n",
"369 Lophius piscatorius\n",
"370 Lophius piscatorius?\n",
"371 Lophius?\n",
"372 Lost fishing gear?\n",
"373 Lotidae\n",
"374 Lots of hydrozoa small\n",
"375 Lots of tunnels in sand aroung 1 cm\n",
"376 Lucermaria bathypilia\n",
"377 Lucernaira bathypila\n",
"378 Lucernaria bathyphila\n",
"379 Lucernaria Bathyphila\n",
"380 Lucernaria bathyphilia\n",
"381 Lucernaria bathypila\n",
"382 lucernaria bathypilia\n",
"383 Lucernaria bathypilia\n",
"384 Lucernaria Bathypilia\n",
"385 Lucernaria\n",
"386 Lucernaruia bathypilia\n",
"387 Luidia ciliaris\n",
"388 Luidia foliolata\n",
"389 Luidia sarsi\n",
"390 Luidia\n",
"391 Luidiidae\n",
"392 Lumepenus\n",
"393 Lumpenidae\n",
"394 Lumpenidae (langebarn)\n",
"395 Lumpeninae\n",
"396 Lumpenu+X18237s\n",
"397 Lumpenus\n",
"398 Lumpenus lampretaeformis\n",
"399 Lycenchelys\n",
"400 Lychenchelys\n",
"401 Lycodes\n",
"402 Lycodes esmarkii\n",
"403 Lycodes eudipleurostictus\n",
"404 Lycodes fridigus\n",
"405 Lycodes frigidus\n",
"406 Lycodes frigidus?\n",
"407 Lycodes gracilis\n",
"408 Lycodes like\n",
"409 lycodes\n",
"410 Lycodes small\n",
"411 Lycodes swimmint into cave\n",
"412 Lycodes Lycodes seminudus\n",
"413 Lycodes vahlii\n",
"414 Lycodinae\n",
"415 lycodones\n",
"416 Lycodonus\n",
"417 Lycodonus flagellicauda\n",
"418 Lysianassidae\n",
"419 Macandrevia\n",
"420 Macandrevia-like\n",
"421 Macandrevia cranium\n",
"422 Macandrewia crania\n",
"423 Machandrevia\n",
"424 Macropodia\n",
"425 Macrouridae\n",
"426 macrourus berglax\n",
"427 Macrourus berglax\n",
"428 Macrourus Berglax\n",
"429 Madrepora like\n",
"430 Madrepora oculata\n",
"431 Madrepora oculata fragment\n",
"432 Madrepore\n",
"433 makk i sandrør\n",
"434 Maldanidae\n",
"435 Mallotus villosus\n",
"436 Mallotus villous\n",
"437 Margarites groenlandicus\n",
"438 Margarites helicinus\n",
"439 Margarites\n",
"440 marin tumbleweed\n",
"441 Marin tumbleweed\n",
"442 MARK\n",
"443 Maurolicus muelleri\n",
"444 Medusa benthic (fastsittende)\n",
"445 Melanogrammus aeglefinus\n",
"446 Melanogrammus aeglefinus maybe same as before\n",
"447 Melanogrammus aeglefinus?\n",
"448 Mellonympha mortenseni\n",
"449 Mellonympha mortensi\n",
"450 Mellonympha motenseni\n",
"451 Membranipora\n",
"452 Mesolpelagic fish\n",
"453 Mesopelagic fish\n",
"454 Mesothuria intestinalis\n",
"455 Mesothuria intestinalis\n",
"456 Metridium\n",
"457 Metridiump\n",
"458 Metridiump?\n",
"459 Micromesistus poutassou\n",
"460 Microstomus\n",
"461 Microstomus kitt\n",
"462 minida\n",
"463 Modiodula\n",
"464 Modiolula\n",
"465 Modiolus or some other bivalves on rock?\n",
"466 Modioulus\n",
"467 Mollusca white\n",
"468 Molpadia\n",
"469 Molva dipterygia\n",
"470 Molva dyperygia\n",
"471 Molva dypterygia\n",
"472 Molva molva\n",
"473 MOlva molva\n",
"474 Mucus tentacles\n",
"475 Mud tube on Rhizocrinus\n",
"476 Mud tubes on Rhizocrinus\n",
"477 mun\n",
"478 muni\n",
"479 munida\n",
"480 Munida\n",
"481 Munida ?\n",
"482 Munida like\n",
"483 Munida sarsi\n",
"484 Munida sitting in porifera big white\n",
"485 Munida density\n",
"486 Munidap\n",
"487 Munidap small\n",
"488 Munidap very small ?\n",
"489 Munidap?\n",
"490 Munidasp\n",
"491 Munida?\n",
"492 Munidavsp\n",
"493 Munidopsis serricornis\n",
"494 munk\n",
"495 Munk\n",
"496 munnida\n",
"497 Munnopsidae\n",
"498 Munnopsis like\n",
"499 Munnopsis like isopod\n",
"500 Munnopsis\n",
"501 Munnopsis small\n",
"502 Munnopsis typica\n",
"503 Munnopsis typicus\n",
"504 Munnopsurus giganteus\n",
"505 Muriceides kukenthali\n",
"506 Muriceides kükenthali\n",
"507 Muricidae\n",
"508 Mya truncata\n",
"509 myc\n",
"510 Mycal eor Haliclona?\n",
"511 mycale\n",
"512 mycale-like\n",
"513 Mycale-like\n",
"514 Mycale ?\n",
"515 Mycale 3\n",
"516 mycale like\n",
"517 Mycale like\n",
"518 Mycale like encrusting\n",
"519 Mycale like with Aplysilla sulfurea\n",
"520 Mycale lilke\n",
"521 Mycale lingua\n",
"522 Mycale lingua fragment\n",
"523 Mycalep\n",
"524 Mycalep ?\n",
"525 Mycalep?\n",
"526 Mycale?\n",
"527 mycidae\n",
"528 Myctophidae\n",
"529 Myctopidae\n",
"530 Myoxocephalus\n",
"531 Myriapora\n",
"532 Myrioporidae\n",
"533 Myriotrochus\n",
"534 Myripora\n",
"535 Mysida\n",
"536 Mysida shadow\n",
"537 Mysidacea\n",
"538 Mysidae\n",
"539 Mytilidae\n",
"540 Mytilidae (dead)\n",
"541 myxicola\n",
"542 Myxicola\n",
"543 Myxicola film\n",
"544 myxicola hyalina\n",
"545 Myxicola infundibulum\n",
"546 Myxilla? (Porifea rust red encrusting)\n",
"547 Myxine glutinosa\n",
"548 Nacticidae\n",
"549 Nacticidae eggcapsule\n",
"550 natantia\n",
"551 Natantia\n",
"552 Naticidae\n",
"553 naticidae egg capsules\n",
"554 Naticidae eggcapsule\n",
"555 Naticidae gsp\n",
"556 Nemerini rosa\n",
"557 Nemertea like\n",
"558 Nemertea long\n",
"559 Nemertea pink\n",
"560 Nemertea white\n",
"561 Nemertea?\n",
"562 Nemertesia antennina\n",
"563 Nemertina\n",
"564 Nemertina pink\n",
"565 Nemertini\n",
"566 Nemertini (pink)\n",
"567 Nemertini pink\n",
"568 Nemertini purple\n",
"569 Nemertini white\n",
"570 Neocrania anomala\n",
"571 Neohela\n",
"572 Neohela cave\n",
"573 Neohela caves\n",
"574 Neohela in cave opening\n",
"575 Neotaenioglossa\n",
"576 Nephrops norvegicus\n",
"577 Nephteidae\n",
"578 Nephtheidae\n",
"579 Nephtheidae-like\n",
"580 Nephtheidae ?\n",
"581 Nephtheidae = soft coral\n",
"582 Nephtheidae blue\n",
"583 Nephtheidae drifa like\n",
"584 Nephtheidae like\n",
"585 Nephtheidae like = Duva\n",
"586 Nephtheidae on Bourgueti\n",
"587 Nephtheidae on Rhizocrinus\n",
"588 Nephtheidae on Rhizocrinus stalk\n",
"589 Nephtheidae on Sabellidae tube\n",
"590 Nephtheidae pink\n",
"591 Nephtheidae white\n",
"592 Nephtheidae white long\n",
"593 Nephtheidae yellow\n",
"594 Nephtheidae yellow ball\n",
"595 Nephtheidae?\n",
"596 Nephtidae-like\n",
"597 Nephtidae like\n",
"598 neptheidea\n",
"599 Neptunea\n",
"600 Neptunea-like\n",
"601 Neptunea eggs\n",
"602 Neptunea despecta\n",
"603 Neptunea like\n",
"604 Nereidae\n",
"605 Nereididae\n",
"606 Nipponnemertes like\n",
"607 Nortia abundant\n",
"608 Not identified fan transparent\n",
"609 Nothria\n",
"610 Nothria tube\n",
"611 Nothria ?\n",
"612 Nothria 5\n",
"613 Nothria Density\n",
"614 Nothria tube\n",
"615 Nothria tubes\n",
"616 Notria\n",
"617 Notria abundant\n",
"618 novocrania anomal\n",
"619 Novocrania anomala\n",
"620 Novocrania anomalia\n",
"621 Nucuulana\n",
"622 nudibranchia\n",
"623 Nudibranchia\n",
"624 Nudibranchia ?\n",
"625 Nudibranchia 1cm purple\n",
"626 Nudibranchia egg capsule\n",
"627 Nudibranchia eggcapsule\n",
"628 Nudibranchia eggs\n",
"629 Nudibranchia like\n",
"630 Nymphon hirtipes\n",
"631 Nymphon\n",
"632 Nymphon stroemi\n",
"633 Nymphon tenellum\n",
"634 Nymphonidae\n",
"635 o\n",
"636 Obelia\n",
"637 Oceanapia\n",
"638 Oceanapia like\n",
"639 Octocorallia\n",
"640 Octocorallia = Gersemia\n",
"641 Octocorallia = Nephtheidae\n",
"642 Octocorallia branch\n",
"643 Octocorallia branched\n",
"644 Octocorallia branched?\n",
"645 Octocorallia like\n",
"646 Octocorallia small\n",
"647 Octocorallia(cup coral white)\n",
"648 Octocorallia?\n",
"649 Octopoda\n",
"650 Octopoda dark\n",
"651 Octopoda like\n",
"652 Octopoda?\n",
"653 Octopus\n",
"654 Octopus like\n",
"655 oedicerotidae\n",
"656 Oenopota\n",
"657 Oenopotinae\n",
"658 Omalocecosa\n",
"659 Ophacanthidae\n",
"660 Ophiacantha\n",
"661 Ophiacanthidae\n",
"662 Ophiacanthidae density\n",
"663 Ophiocantidae\n",
"664 Ophiocomina borealis\n",
"665 Ophiodromus flexuosus\n",
"666 Ophiopholis aculeata\n",
"667 Ophiopleura borealis\n",
"668 Ophiopleura?\n",
"669 Ophioscolex galcialis\n",
"670 Ophioscolex glacialis\n",
"671 Ophiouridea\n",
"672 Ophiouridea -big\n",
"673 Ophiouridea ?\n",
"674 Ophiouridea 50\n",
"675 Ophiouridea arms\n",
"676 Ophiouridea big\n",
"677 Ophiouridea ing 40\n",
"678 Ophiouridea ing 70\n",
"679 Ophiouridea ing seabed\n",
"680 Ophiouridea hairy\n",
"681 Ophiouridea on asbestopluma\n",
"682 Ophiouridea orange\n",
"683 Ophiouridea pink\n",
"684 Ophiouridea small\n",
"685 Ophiouridea still 80 age\n",
"686 Ophiouridea violet\n",
"687 Ophiouridea violet disk\n",
"688 Ophiouridea violet very abundant on seabed 80 age\n",
"689 Ophiura sarsii\n",
"690 Ophiura sarsi\n",
"691 Ophiura violet disk\n",
"692 Ophiurida\n",
"693 Ophiuridae\n",
"694 Ophiuridae density\n",
"695 Ophiuridae?\n",
"696 Ophiuridea- orange\n",
"697 Ophiuridea\n",
"698 Ophiuroida\n",
"699 Ophiuroidae\n",
"700 Ophiuroidae big\n",
"701 Ophiuroidae density\n",
"702 Ophiuroidae holding Porifera\n",
"703 Ophiuroidae orange\n",
"704 Ophiuroidae small\n",
"705 Ophiuroidae tiny\n",
"706 Ophiuroidae violet disk\n",
"707 Ophiuroidea\n",
"708 Ophiuroidea arms?\n",
"709 Ophiuroidea big\n",
"710 Ophiuroidea density\n",
"711 Ophiuroidea Density\n",
"712 Ophiuroidea m2\n",
"713 Ophiuroidea orange\n",
"714 Opistobranchiata\n",
"715 organism yellow\n",
"716 organisms indet on boulder\n",
"717 Ostracoda\n",
"718 Ostreidae\n",
"719 Pachicerianthus multiplicatus\n",
"720 Pachycerianthus mulitiplicatus\n",
"721 Pachycerianthus multicorne\n",
"722 Pachycerianthus multiplicatus\n",
"723 Paguridae\n",
"724 Paguridae in Zoanthidae\n",
"725 Paguridae like\n",
"726 Paguridae with actiniaria\n",
"727 Paguridae with epizoanthidae\n",
"728 Paguridae with epizooanthidae\n",
"729 Paguridae with Epizooanthidae (1)\n",
"730 Pagurusp\n",
"731 pandalidae\n",
"732 Pandalidae\n",
"733 pandalidae red\n",
"734 Pandalidae red\n",
"735 Pandalius borealis\n",
"736 Pandalus boralis\n",
"737 pandalus borealis\n",
"738 Pandalus borealis\n",
"739 Pandalus montagui\n",
"740 Pandalus montaguii\n",
"741 Pandalus\n",
"742 Pantopoda\n",
"743 Paragorgia (branch)\n",
"744 Paragorgia (broken branch)\n",
"745 Paragorgia (pink)\n",
"746 Paragorgia (white)\n",
"747 Paragorgia arborea\n",
"748 Paragorgia arborea ing 40\n",
"749 Paragorgia arborea dead branch\n",
"750 Paragorgia arborea fragment\n",
"751 Paragorgia arborea pink\n",
"752 Paragorgia arborea red\n",
"753 Paragorgia arborea white\n",
"754 Paragorgia arborea?\n",
"755 Paragorgia branch\n",
"756 Paragorgia broken branch\n",
"757 Paragorgia broken tree\n",
"758 Paragorgia esqueleton\n",
"759 Paragorgia pink\n",
"760 Paragorgia pink broken branch\n",
"761 Paragorgia red\n",
"762 Paragorgia red branch\n",
"763 Paragorgia sceleton\n",
"764 Paragorgia squeleton\n",
"765 Paragorgia white\n",
"766 Paragorgia wood\n",
"767 Paragorgoa (red)\n",
"768 Paragorgoa red\n",
"769 Paralepididae\n",
"770 Paraliparis bathybii\n",
"771 Paraliparis bathybius\n",
"772 Paraliparis shadow\n",
"773 Paralithodes camtschaticus\n",
"774 Paramphithoe hystrix\n",
"775 Paramphitoe hystrix\n",
"776 Paramuricea placomus\n",
"777 Paramuricea placomus ?\n",
"778 Paramuricea placomus fragment\n",
"779 Paramuriceap\n",
"780 Parasmittina jeffreysi\n",
"781 Parastichopus tremulus\n",
"782 Parlithodes kamschatka\n",
"783 Pasiphaea\n",
"784 Patellogastropoda\n",
"785 pea crab\n",
"786 Pectenidae\n",
"787 Pectinaria\n",
"788 Pectinaria tube\n",
"789 Pectinariidae\n",
"790 Pectinidae\n",
"791 Pectinidae ?\n",
"792 Pectinidae dead\n",
"793 Pectinidae?\n",
"794 Pectininaria tube\n",
"795 Pectinoidea\n",
"796 pelagic deep sea meduse\n",
"797 Pelosina arborescens\n",
"798 Pelosina arborescens density\n",
"799 Pelosina arborescens Density\n",
"800 Pelosina arborescens lIke\n",
"801 Pelosina arborescens?\n",
"802 Pelosina arborescensBryozoa bush\n",
"803 Pelosina like\n",
"804 Pelosina on rock\n",
"805 Pennatula like small\n",
"806 Pennatula phosphorea\n",
"807 Pennatula phosphorea = pennatulacea\n",
"808 Pennatula pink\n",
"809 Pennatula\n",
"810 Pennatulap\n",
"811 Pennatulap brown\n",
"812 pennatulacea\n",
"813 Pennatulacea\n",
"814 Pennatulacea (?)\n",
"815 Pennatulacea (seawhip?)\n",
"816 Pennatulacea (stalk)\n",
"817 Pennatulacea (Virgularia?)\n",
"818 Pennatulacea broken\n",
"819 Pennatulacea dark\n",
"820 Pennatulacea dark red large foot\n",
"821 Pennatulacea funicularia like\n",
"822 Pennatulacea pink\n",
"823 Pennatulacea red\n",
"824 Pennatulaceap\n",
"825 Pennatulaceap (Kophobelemnon?)\n",
"826 Pennatulaceap Funiculina?\n",
"827 Pennatulaceap purple\n",
"828 Pennatulaceap?\n",
"829 PennatulaceapFunicuina?\n",
"830 Pennatulacea uidentifisert\n",
"831 Pennatulacea white big\n",
"832 PennatulaceaPtilosarcus\n",
"833 Pennatulacida\n",
"834 pennatulacida\n",
"835 Pennatulidae\n",
"836 Pennaulaceap\n",
"837 Penntaculap\n",
"838 Penntaculaceap\n",
"839 Peracarida\n",
"840 Peracarida on cod\n",
"841 Peracaridae\n",
"842 Perecarida\n",
"843 Periphylla periphylla\n",
"844 Petromyzon marinus\n",
"845 Peuronectidae\n",
"846 Pha\n",
"847 Phakellia\n",
"848 Phakellia-\n",
"849 Phakellia- rests\n",
"850 phakellia-like\n",
"851 Phakellia-like\n",
"852 Phakellia -like\n",
"853 Phakellia flak\n",
"854 Phakellia frynsete\n",
"855 Phakellia (like flak small)\n",
"856 Phakellia (like flak)\n",
"857 Phakellia broken\n",
"858 Phakellia Broken\n",
"859 Phakellia broken?\n",
"860 Phakellia damaged\n",
"861 Phakellia flak\n",
"862 Phakellia fragment\n",
"863 Phakellia fringy\n",
"864 Phakellia frynsete\n",
"1 Phakellia irregular fringed\n",
"2 Phakellia like\n",
"3 Phakellia like flak\n",
"4 Phakellia like_grey\n",
"5 Phakellia offwhite branched\n",
"6 Phakellia rugosa like\n",
"7 Phakellia\n",
"8 Phakellia-like\n",
"9 Phakellia -like\n",
"10 Phakellia 1\n",
"11 Phakellia flat on sediment\n",
"12 Phakellia fragment\n",
"13 Phakellia?\n",
"14 Phakellia ventilabrum\n",
"15 Philine finmarchica\n",
"16 Philine\n",
"17 Pholis gunnellus\n",
"18 Phycis blennoides\n",
"19 Phycis blennoides skjellbrosme\n",
"20 Phyllodoce groenlandica\n",
"21 Phyllodocidae\n",
"22 Physis\n",
"23 Physis belnnoides\n",
"24 Physis blennoides\n",
"25 Pink indet\n",
"26 Pink stalk\n",
"27 pink unidentified\n",
"28 Pink unidentified\n",
"29 pink unidentifies\n",
"30 piperenser\n",
"31 Piperenser\n",
"32 Piperensere\n",
"33 Plachostegus tridentatus\n",
"34 Placostegus ?\n",
"35 Placostegus tridentatus\n",
"36 Placostegus tridentatus-like\n",
"37 plakortis\n",
"38 Plakortis\n",
"39 Plakortis D m2\n",
"40 Plastic\n",
"41 plastic?\n",
"42 Platyhelminthes\n",
"43 Pleuronectes platessa\n",
"44 Pleuronectidae\n",
"45 Pleuronectidae?\n",
"46 Pleuronectiformes\n",
"47 Pleuronectiformes:\n",
"48 Pnadalus borealis\n",
"49 Polacius virens\n",
"50 Polimastia like\n",
"51 Polimastia mammilaris like\n",
"52 Pollachius pollachius\n",
"53 Pollachius\n",
"54 Pollachius virens\n",
"55 Pollachius virens?\n",
"56 Pollachius virus\n",
"57 Polycarpa\n",
"58 Polychaeta\n",
"59 Polychaeta tube\n",
"60 Polychaeta (erranta)\n",
"61 Polychaeta (Errantia red)\n",
"62 Polychaeta (Errantia)\n",
"63 Polychaeta (Errantia) Nereidae\n",
"64 Polychaeta (Errantia) Skjellrygg\n",
"65 Polychaeta (holes)\n",
"66 Polychaeta (like)\n",
"67 Polychaeta (shells)\n",
"68 Polychaeta (transparent ditrupa like)\n",
"69 Polychaeta (tube in sediment)\n",
"70 Polychaeta (tube made of shell fragments)\n",
"71 Polychaeta (tube of shell fragments)\n",
"72 Polychaeta (tube short)\n",
"73 Polychaeta (tube)\n",
"74 Polychaeta (tube) ?\n",
"75 Polychaeta (tube)?\n",
"76 Polychaeta (tubes small)\n",
"77 Polychaeta (tubes)\n",
"78 Polychaeta dancing\n",
"79 polychaeta errantia\n",
"80 Polychaeta errantia\n",
"81 Polychaeta Errantia\n",
"82 Polychaeta Errantia transparent\n",
"83 Polychaeta errantiablack and orange\n",
"84 Polychaeta fishibg bag\n",
"85 Polychaeta fishing bag\n",
"86 Polychaeta flying\n",
"87 Polychaeta in calcerous tube\n",
"88 Polychaeta in sand tube\n",
"89 Polychaeta in sand tube not sabellidae\n",
"90 Polychaeta like\n",
"91 Polychaeta long tube\n",
"92 Polychaeta long tubes\n",
"93 Polychaeta sand tube\n",
"94 Polychaeta sedentaria\n",
"95 Polychaeta Sedentaria\n",
"96 Polychaeta sediment tube\n",
"97 Polychaeta shells\n",
"98 Polychaeta soft\n",
"99 Polychaeta soft tube\n",
"100 Polychaeta swimming\n",
"101 Polychaeta tentacel\n",
"102 Polychaeta tentacles\n",
"103 Polychaeta tentacles ?\n",
"104 Polychaeta tube\n",
"105 Polychaeta Tube\n",
"106 Polychaeta tube burrowd\n",
"107 Polychaeta tube density\n",
"108 Polychaeta tube Density\n",
"109 Polychaeta tube hairy thin\n",
"110 Polychaeta tube in goup\n",
"111 Polychaeta tube in sediment\n",
"112 Polychaeta tube long\n",
"113 Polychaeta tube long thin\n",
"114 Polychaeta tube muddy\n",
"115 Polychaeta tube of pebbles\n",
"116 Polychaeta tube sandy\n",
"117 Polychaeta tube short\n",
"118 Polychaeta tube short Density\n",
"119 Polychaeta tube short thin\n",
"120 Polychaeta tube small\n",
"121 Polychaeta tube small ?\n",
"122 Polychaeta tube small?\n",
"123 Polychaeta tube soft\n",
"124 Polychaeta tube soft Density\n",
"125 Polychaeta tube thick\n",
"126 Polychaeta tube thin\n",
"127 Polychaeta tube thin 30\n",
"128 Polychaeta tube thin short\n",
"129 Polychaeta tube thin small\n",
"130 Polychaeta tube various\n",
"131 Polychaeta tube weawed together\n",
"132 Polychaeta tube Sand tubes short\n",
"133 Polychaeta tube Sand tubes thick\n",
"134 polychaeta tube?\n",
"135 Polychaeta tubes\n",
"136 polychaeta white\n",
"137 Polychaeta with thin mud-tubes ing sediment\n",
"138 Polychaeta(tube)\n",
"139 polychaete\n",
"140 Polychaete errantia in smooth sediment tube?\n",
"141 Polychaete tube complex functioning as habitat for many other animals\n",
"142 polychaetea (Lanice type)\n",
"143 Polychatea tube\n",
"144 Polychatea tube density\n",
"145 Polychatea tube Density\n",
"146 polycheata fecal heap\n",
"147 Polycheta tubes complex\n",
"148 Polymastia\n",
"149 Polymastia (like)\n",
"150 Polymastia (like) = porifera brain\n",
"151 Polymastia like\n",
"152 Polymastia like white\n",
"153 Polymastia mammilaris like\n",
"154 Polymastia penicillus\n",
"155 Polymastia robusta\n",
"156 Polymastia sedentaria\n",
"157 Polymastia round tops\n",
"158 Polymastia?\n",
"159 Polymastia yellow\n",
"160 Polymastidae\n",
"161 Polymastiidae\n",
"162 Polynoidae\n",
"163 polyplacophora\n",
"164 Polyplacophora\n",
"165 Polyppes on hydrozoa\n",
"166 Pomaterus\n",
"167 pomatoceros\n",
"168 Pomatoceros\n",
"169 Pomatoceros triqueter\n",
"170 Pomatocerus\n",
"171 Pomatocerus triqueter\n",
"172 Pontaster like\n",
"173 Pontaster tenuispinus\n",
"174 Pontaster tenuispinusjuv\n",
"175 Pontaster tenuspinus\n",
"176 Porania\n",
"177 Porania like\n",
"178 Porania pulvillus\n",
"179 Porania red\n",
"180 Porania yellow\n",
"181 poranidae\n",
"182 Poranidae\n",
"183 Poranidae-like white\n",
"184 Poraniidae\n",
"185 Poraniiidae\n",
"186 Poranimorpha\n",
"187 Poraniomorpha\n",
"188 Poraniomorpha like\n",
"189 Poraniomorpha tumida\n",
"190 Poranoimorpha\n",
"191 Porella\n",
"192 Porella compresa\n",
"193 Porella compressa\n",
"194 Porella compressa c\n",
"195 Porfera indet yelow\n",
"196 Porfera large\n",
"197 Porfera yellow\n",
"198 Poriania\n",
"199 Porianidae\n",
"200 Poriera encrusting orange\n",
"201 Poriera encrusting red\n",
"202 Poriera round\n",
"203 Poriera white\n",
"204 Poriera yellow small\n",
"205 Porifaera Polymastia-like?\n",
"206 Porifea encrusting blue\n",
"207 Porifea encrusting green\n",
"208 Porifea encrusting orange\n",
"209 Porifea encrusting red\n",
"210 Porifea encrusting various\n",
"211 Porifea encrusting white\n",
"212 Porifea encrusting yellow\n",
"213 porifea stilket bat\n",
"214 porifera\n",
"215 Porifera\n",
"216 Porifera-like\n",
"217 Porifera (incrusting)\n",
"218 Porifera Axinella-like\n",
"219 Porifera large\n",
"220 Porifera large irreg\n",
"221 Porifera medium\n",
"222 Porifera white branched\n",
"223 Porifera whiteyellow\n",
"224 Porifera with trumpet whitegrey\n",
"225 Porifera yellowbrown medium\n",
"226 Porifera yellowgreen\n",
"227 Porifera ( irreg small)\n",
"228 Porifera ( large)\n",
"229 Porifera ( yellow-brown leafy)\n",
"230 Porifera (Axinella-like)\n",
"231 Porifera (bat-shaped)\n",
"232 Porifera (bat-shaped, yellow)\n",
"233 Porifera (bat shaped)\n",
"234 Porifera (black encrusting)\n",
"235 Porifera (branched white)\n",
"236 Porifera (branched)\n",
"237 Porifera (broken)\n",
"238 Porifera (brown )\n",
"239 Porifera (brown encrusting)\n",
"240 Porifera (brown irreg)\n",
"241 Porifera (brown irregular)\n",
"242 Porifera (brown small)\n",
"243 Porifera (brown urneformet)\n",
"244 Porifera (brown)\n",
"245 Porifera (dirty-yellow encrusting)\n",
"246 Porifera (dirty yellow encrusting)\n",
"247 Porifera (dirty yellow irreg small)\n",
"248 Porifera (dirty yellow round small)\n",
"249 Porifera (dirty yellow upright, thin sheetlike)\n",
"250 Porifera (encrusting whiteyellow)\n",
"251 Porifera (encrusting bluegrey )\n",
"252 Porifera (encrusting bluegrey)\n",
"253 Porifera (encrusting brown )\n",
"254 Porifera (encrusting brown)\n",
"255 Porifera (encrusting dak)\n",
"256 Porifera (encrusting dark )\n",
"257 Porifera (encrusting dark)\n",
"258 Porifera (encrusting dirty yellow )\n",
"259 Porifera (encrusting dirtywhite)\n",
"260 Porifera (encrusting green )\n",
"261 Porifera (encrusting green)\n",
"262 Porifera (encrusting grey )\n",
"263 Porifera (encrusting grey)\n",
"264 Porifera (encrusting grey) ?\n",
"265 Porifera (encrusting light blue)\n",
"266 Porifera (encrusting lilla )\n",
"267 Porifera (encrusting lilla)\n",
"268 Porifera (encrusting orange )\n",
"269 Porifera (encrusting orange Hymedesmia)\n",
"270 Porifera (encrusting orange)\n",
"271 Porifera (encrusting orange) ?\n",
"272 Porifera (encrusting pink)\n",
"273 Porifera (encrusting purple )\n",
"274 Porifera (encrusting purple)\n",
"275 Porifera (encrusting red )\n",
"276 Porifera (encrusting red)\n",
"277 Porifera (encrusting ryellow)\n",
"278 Porifera (encrusting small various)\n",
"279 Porifera (encrusting small whiteyellow )\n",
"280 Porifera (encrusting small whiteyellow)\n",
"281 Porifera (encrusting various)\n",
"282 Porifera (encrusting white dirty)\n",
"283 Porifera (encrusting white transparent)\n",
"284 Porifera (encrusting white)\n",
"285 Porifera (encrusting white) ?\n",
"286 Porifera (encrusting whitewith \"arm\")\n",
"287 Porifera (encrusting whiteyellow )\n",
"288 Porifera (encrusting whiteyellow dirty)\n",
"289 Porifera (encrusting whiteyellow small )\n",
"290 Porifera (encrusting whiteyellow small)\n",
"291 Porifera (encrusting whiteyellow)\n",
"292 Porifera (encrusting whiteyellow) ?\n",
"293 Porifera (encrusting whityellow )\n",
"294 Porifera (encrusting yellow )\n",
"295 Porifera (encrusting yellow dirty)\n",
"296 Porifera (encrusting yellow small)\n",
"297 Porifera (encrusting yellowikey)\n",
"298 Porifera (encrusting yellow with thorns)\n",
"299 Porifera (encrusting yellow)\n",
"300 Porifera (encrusting yellow) ?\n",
"301 Porifera (encrusting yellowbrown )\n",
"302 Porifera (encrusting yellowbrown)\n",
"303 Porifera (encrusting yellowgreen )\n",
"304 Porifera (encrusting yellowgreen)\n",
"305 Porifera (encrusting yellowspikey)\n",
"306 Porifera (encrustingpurple))\n",
"307 Porifera (erect)\n",
"308 Porifera (Farrea-like)\n",
"309 Porifera (fingeronge)\n",
"310 Porifera (fingeronge)?\n",
"311 Porifera (green encrusting)\n",
"312 Porifera (green small)\n",
"313 Porifera (greenyellow)\n",
"314 Porifera (grey )\n",
"315 Porifera (grey large flak maybe broken)\n",
"316 Porifera (grey small)\n",
"317 Porifera (grey)\n",
"318 Porifera (Haliclona?)\n",
"319 Porifera (incrusting\n",
"320 Porifera (incrusting)\n",
"321 Porifera (indet)\n",
"322 Porifera (indet): white (Strychnus not ed by Apl)\n",
"323 Porifera (irregular white)\n",
"324 Porifera (irregular leafy)\n",
"325 Porifera (irregular)\n",
"326 Porifera (large whiteonge)\n",
"327 Porifera (large whiteonge)or Actiniaria white?\n",
"328 Porifera (large white)\n",
"329 Porifera (large yellow-brown)\n",
"330 Porifera (large yellow)\n",
"331 Porifera (large)\n",
"332 Porifera (light yellow small tornete hjul)\n",
"333 Porifera (ncrusting whiteyellow )\n",
"334 Porifera (Offwhite with pores)\n",
"335 Porifera (opaque small)\n",
"336 Porifera (orange encrusting)\n",
"337 Porifera (orange)\n",
"338 Porifera (Phakelia-like)\n",
"339 Porifera (Phakelli-like)\n",
"340 porifera (Phakellia-like)\n",
"341 Porifera (Phakellia-like)\n",
"342 Porifera (phakellia like)\n",
"343 Porifera (Phakelliaa-like)\n",
"344 Porifera (round small grey)\n",
"345 Porifera (round small)\n",
"346 Porifera (round white)\n",
"347 porifera (round)\n",
"348 Porifera (round)\n",
"349 Porifera (round, off-white, ed with sediment)\n",
"350 Porifera (rust-red encrusting)\n",
"351 Porifera (smal encrusting whiteyellow )\n",
"352 Porifera (small brown round)\n",
"353 Porifera (small brown)\n",
"354 Porifera (small dirty round)\n",
"355 Porifera (small dirty yellow round)\n",
"356 Porifera (small grey round)\n",
"357 Porifera (small grey)\n",
"358 Porifera (small orange)\n",
"359 Porifera (small roundonge)\n",
"360 Porifera (small roundonge) with central big operculum\n",
"361 Porifera (small roundonge)with big oscula\n",
"362 Porifera (small round)\n",
"363 Porifera (small urnsponge), looks like Actinaria with tentacles withdrwn\n",
"364 Porifera (small white )\n",
"365 Porifera (small white dirty round)\n",
"366 Porifera (small white round)\n",
"367 Porifera (small white round) ?\n",
"368 Porifera (small white)\n",
"369 Porifera (small whiteyellow )\n",
"370 Porifera (small whiteyellow horn)\n",
"371 Porifera (small whiteyellow irregular)\n",
"372 Porifera (small whiteyellow round)\n",
"373 Porifera (small whiteyellow round)(mycale like)\n",
"374 Porifera (small whiteyellow round)?\n",
"375 Porifera (small whiteyellow small)\n",
"376 Porifera (small whiteyellow)\n",
"377 Porifera (small whiteyellow) mycale like\n",
"378 Porifera (small yellow roundikeey)\n",
"379 Porifera (small yellow round)\n",
"380 Porifera (small yellowonge)\n",
"381 Porifera (small yellowonge) with pores\n",
"382 Porifera (small yellowonge)with big osculum\n",
"383 Porifera (small yellow)\n",
"384 Porifera (small yellowishonge)\n",
"385 Porifera (sulphur-yellow encrusting)\n",
"386 Porifera (sulphur yellow encrusting)\n",
"387 Porifera (sulphur yellow irregular)\n",
"388 Porifera (var small)\n",
"389 Porifera (var small) ?\n",
"390 Porifera (var small) on boulder\n",
"391 Porifera (var)\n",
"392 Porifera (white branched)\n",
"393 Porifera (white dirty irregular)\n",
"394 Porifera (white dirty small)\n",
"395 Porifera (white encrustingonge)\n",
"396 Porifera (white encrusting)\n",
"397 Porifera (white encrusting) with dark surface\n",
"398 Porifera (white erect)\n",
"399 Porifera (white erectl)\n",
"400 Porifera (white golfball\n",
"401 Porifera (white golfballonge)\n",
"402 Porifera (white irreg )\n",
"403 Porifera (white irreg l)\n",
"404 Porifera (white irreg small)\n",
"405 Porifera (white irreg)\n",
"406 Porifera (white irregularonge sheet-like)\n",
"407 Porifera (white irregularonge)\n",
"408 Porifera (white irregularonge) on boulder\n",
"409 Porifera (white irregularonge Phakellia rugoas?-like)\n",
"410 Porifera (white irregular)\n",
"411 Porifera (white large dirty)\n",
"412 Porifera (white large irregular)\n",
"413 Porifera (white large urne shaped)\n",
"414 Porifera (white large)\n",
"415 Porifera (white leafy Hexactinellida)\n",
"416 Porifera (white leafy)\n",
"417 Porifera (white regularonge)\n",
"418 Porifera (white round)\n",
"419 Porifera (white smal irregl)\n",
"420 Porifera (white small \"hairy\")\n",
"421 Porifera (white small bowl)\n",
"422 Porifera (white small branched)\n",
"423 Porifera (white small erect)\n",
"424 Porifera (white small hary stalked)\n",
"425 Porifera (white small irreg urneformet)\n",
"426 Porifera (white small irreg)\n",
"427 Porifera (white small urne with stalk)\n",
"428 Porifera (white small urne)\n",
"429 Porifera (white small wineglass like)\n",
"430 Porifera (white small)\n",
"431 POrifera (white small)\n",
"432 Porifera (white small) ?\n",
"433 Porifera (white small) erect\n",
"434 Porifera (white small) irreg\n",
"435 Porifera (white smallirreg)\n",
"436 Porifera (whiteonge)\n",
"437 Porifera (whiteonge), branched?\n",
"438 Porifera (whiteonge)?\n",
"439 Porifera (whiteonge, small round on boulder)\n",
"440 Porifera (white tennisball)\n",
"441 Porifera (white unidentified)\n",
"442 Porifera (white urneformet)\n",
"443 Porifera (white)\n",
"444 Porifera (white) with papiller\n",
"445 Porifera (whitebranched small)\n",
"446 Porifera (whitegrey)\n",
"447 Porifera (whiteyellow )\n",
"448 Porifera (whiteyellow dirty)\n",
"449 Porifera (whiteyellow irreg )\n",
"450 Porifera (whiteyellow irregular)\n",
"451 Porifera (whiteyellow large irregular)\n",
"452 Porifera (whiteyellow large)\n",
"453 Porifera (whiteyellow round)\n",
"454 Porifera (whiteyellow small)\n",
"455 Porifera (whiteyellow urneformet)\n",
"456 Porifera (whiteyellow)\n",
"457 Porifera (yellow-brown dirty)\n",
"458 Porifera (yellow )\n",
"459 Porifera (yellow branched)\n",
"460 Porifera (yellow dirty irregular)\n",
"461 Porifera (yellow dirty)\n",
"462 Porifera (yellow encrusting on hard substrate)\n",
"463 Porifera (yellow encrusting)\n",
"464 Porifera (yellow irregularonge)\n",
"465 Porifera (yellow irregularonge) (Aplysilla?)\n",
"466 Porifera (yellow irregularonge) erect\n",
"467 Porifera (yellow irregular)\n",
"468 Porifera (yellow large irregular)\n",
"469 Porifera (yellow large)\n",
"470 Porifera (yellow roundonge)\n",
"471 Porifera (yellow round)\n",
"472 Porifera (yellow small dirty)\n",
"473 Porifera (yellow small irreg)\n",
"474 Porifera (yellow small urneformet)\n",
"475 Porifera (yellow small with thorns)\n",
"476 porifera (yellow small)\n",
"477 Porifera (yellow small)\n",
"478 Porifera (yellow small) stripete\n",
"479 Porifera (yellowonge)\n",
"480 Porifera (yellow unidentified small)\n",
"481 Porifera (yellow urneformet)\n",
"482 Porifera (yellow)\n",
"483 Porifera (yellow) (mycale)\n",
"484 Porifera (yellow) mycale like\n",
"485 Porifera (yellowbrown irregular)\n",
"486 Porifera (yellowbrown small)\n",
"487 Porifera (yellowbrown)\n",
"488 Porifera antho-like\n",
"489 Porifera Antho-like\n",
"490 Porifera Antho-like orange\n",
"491 Porifera Antho-like?\n",
"492 Porifera Antho-like? orange\n",
"493 Porifera apricot\n",
"494 Porifera apricot color\n",
"495 Porifera apricot round small\n",
"496 Porifera Axella?\n",
"497 Porifera balloon one osculum\n",
"498 porifera baseball bat\n",
"499 Porifera baseballbat\n",
"500 Porifera bat-dhaped\n",
"501 Porifera bat-like white\n",
"502 Porifera bat-shaped\n",
"503 Porifera bat-shaped?\n",
"504 Porifera bat like transparent\n",
"505 Porifera bat like white\n",
"506 Porifera bat shaped\n",
"507 Porifera bat shaped ?\n",
"508 Porifera bat shaped off white\n",
"509 Porifera bat shaped small white\n",
"510 Porifera bat shaped white\n",
"511 Porifera bat stalked\n",
"512 Porifera bat transarent\n",
"513 Porifera bat yellow\n",
"514 Porifera bat white\n",
"515 Porifera beige\n",
"516 Porifera big\n",
"517 Porifera big white\n",
"518 Porifera big yellow\n",
"519 Porifera big yellow-brown\n",
"520 Porifera big yellow-brown irregular\n",
"521 Porifera big irreg yellow\n",
"522 Porifera big white fluffy irreg\n",
"523 Porifera big white branched\n",
"524 Porifera big white cup\n",
"525 Porifera big white dirty\n",
"526 Porifera big white fan\n",
"527 Porifera big white irreg\n",
"528 Porifera big white irregular\n",
"529 Porifera big whiteyellow\n",
"530 Porifera big Yellow\n",
"531 Porifera bigwhite\n",
"532 Porifera blue\n",
"533 Porifera blue trompet\n",
"534 Porifera bowl shaped white\n",
"535 Porifera brain\n",
"536 Porifera branch\n",
"537 porifera branched\n",
"538 Porifera branched\n",
"539 POrifera branched\n",
"540 Porifera branched ball\n",
"541 Porifera branched ball like\n",
"542 Porifera branched brown\n",
"543 Porifera branched coral\n",
"544 Porifera branched grey\n",
"545 Porifera branched irreg whiteyellow\n",
"546 Porifera branched orange\n",
"547 Porifera branched round\n",
"548 Porifera branched thin\n",
"549 Porifera branched white\n",
"550 Porifera branched yellow\n",
"551 Porifera broken\n",
"552 porifera brown\n",
"553 Porifera brown\n",
"554 Porifera Brown\n",
"555 Porifera brown big\n",
"556 Porifera brown irreg small\n",
"557 Porifera brown large\n",
"558 Porifera brown medium\n",
"559 Porifera brown small\n",
"560 Porifera brown small round\n",
"561 Porifera browniky urne\n",
"562 Porifera brown urneformet\n",
"563 Porifera bush\n",
"564 Porifera Cauliflower lookalike\n",
"565 Porifera Clathria ? (veinedsponge)\n",
"566 Porifera colonial white\n",
"567 Porifera cup\n",
"568 Porifera dicotomus branched\n",
"569 Porifera dirty\n",
"570 Porifera dirty erect\n",
"571 Porifera dirty large\n",
"572 Porifera dirty medium\n",
"573 Porifera dirty medium irreg\n",
"574 Porifera dirty small\n",
"575 Porifera ditocomus branched\n",
"576 Porifera ecrusting yellow\n",
"577 Porifera egg Density\n",
"578 Porifera eggmass\n",
"579 Porifera enchrustin various\n",
"580 Porifera encruating orange\n",
"581 Porifera encruating red\n",
"582 Porifera encrusing yellow\n",
"583 porifera encrusting\n",
"584 Porifera encrusting\n",
"585 Porifera encrusting whiteyellow\n",
"586 Porifera encrusting whiteyellow big osculi\n",
"587 Porifera encrusting yellow\n",
"588 Porifera encrusting (white)\n",
"589 Porifera encrusting apricot\n",
"590 Porifera encrusting big white\n",
"591 Porifera encrusting black\n",
"592 Porifera encrusting blue\n",
"593 Porifera encrusting blue transparent\n",
"594 Porifera encrusting bluegery\n",
"595 Porifera encrusting bluegray\n",
"596 Porifera encrusting bluegreen\n",
"597 Porifera encrusting bluegrey\n",
"598 Porifera encrusting bluewhite\n",
"599 Porifera encrusting brown\n",
"600 Porifera encrusting dark\n",
"601 Porifera encrusting dark blue\n",
"602 Porifera encrusting dirty yelloe\n",
"603 Porifera encrusting dirty yellow\n",
"604 Porifera encrusting gery\n",
"605 Porifera encrusting gray\n",
"606 Porifera encrusting green\n",
"607 Porifera encrusting green trompet\n",
"608 Porifera encrusting greenyellow\n",
"609 Porifera encrusting grey\n",
"610 Porifera encrusting greygreen\n",
"611 Porifera encrusting lilla\n",
"612 Porifera encrusting network\n",
"613 Porifera encrusting offwhite\n",
"614 Porifera encrusting opaque\n",
"615 Porifera encrusting orange\n",
"616 POrifera encrusting orange\n",
"617 Porifera encrusting orange D m2\n",
"618 Porifera encrusting orange pale\n",
"619 Porifera encrusting orange age\n",
"620 Porifera encrusting ornage\n",
"621 Porifera encrusting ornge\n",
"622 Porifera encrusting peach\n",
"623 Porifera encrusting Percent\n",
"624 Porifera encrusting yellow\n",
"625 Porifera encrusting bluegray\n",
"626 Porifera encrusting bluegrey\n",
"627 Porifera encrusting orange\n",
"628 Porifera encrusting various\n",
"629 Porifera encrusting white\n",
"630 Porifera encrusting yellow\n",
"631 Porifera encrusting Percent yellow\n",
"632 Porifera encrusting pink\n",
"633 Porifera encrusting purple\n",
"634 Porifera encrusting red\n",
"635 Porifera encrusting rust-red\n",
"636 Porifera encrustingikey\n",
"637 Porifera encrusting transparent\n",
"638 Porifera encrusting varia\n",
"639 Porifera encrusting varios\n",
"640 Porifera encrusting various\n",
"641 Porifera encrusting various ( )\n",
"642 Porifera encrusting various age\n",
"643 Porifera encrusting variuos\n",
"644 Porifera encrusting variuous\n",
"645 Porifera encrusting violet\n",
"646 porifera encrusting white\n",
"647 Porifera encrusting white\n",
"648 Porifera encrusting white big\n",
"649 Porifera encrusting white dirty\n",
"650 Porifera encrusting white hairy\n",
"651 Porifera encrusting white on Brachiopoda\n",
"652 Porifera encrusting white age\n",
"653 Porifera encrusting whiteikey\n",
"654 Porifera encrusting whiteiky\n",
"655 Porifera encrusting whiteiny\n",
"656 Porifera encrusting white with hair\n",
"657 Porifera encrusting whitedirty\n",
"658 Porifera encrusting whitegreen\n",
"659 Porifera encrusting whitegrey\n",
"660 Porifera encrusting whiteyellow\n",
"661 Porifera encrusting whiteyellow medium\n",
"662 Porifera encrusting whitte\n",
"663 Porifera encrusting whte\n",
"664 Porifera encrusting witthines\n",
"665 Porifera encrusting yelllow\n",
"666 Porifera encrusting yellow\n",
"667 Porifera encrusting yellow iky\n",
"668 Porifera encrusting yellow dirty\n",
"669 Porifera encrusting yellow irreg\n",
"670 Porifera encrusting yellow age\n",
"671 Porifera encrusting yellow withinkes\n",
"672 Porifera encrusting yellow with worts\n",
"673 Porifera encrusting yellowbrown\n",
"674 Porifera encrusting yellowdirty\n",
"675 Porifera encrusting yellowgreen\n",
"676 Porifera encrusting yelow\n",
"677 Porifera encrusting yrellow\n",
"678 Porifera encrusting)\n",
"679 Porifera encrusting botryllus\n",
"680 Porifera encrusting gey\n",
"681 Porifera encrusting orange Percent\n",
"682 Porifera encrusting red Percent\n",
"683 Porifera encrusting varioius\n",
"684 Porifera encrusting variosus\n",
"685 Porifera encrusting variouis\n",
"686 Porifera encrusting yellow Percent\n",
"687 Porifera encrustingbluegrey\n",
"688 Porifera encrustinggreen\n",
"689 Porifera encrustingorange\n",
"690 Porifera encrustingpink\n",
"691 Porifera encrustingwhite\n",
"692 Porifera encrustingyellow\n",
"693 Porifera encrustingt yellow\n",
"694 Porifera encruting small yellow\n",
"695 Porifera encrutinge beige\n",
"696 Porifera enrcrusting\n",
"697 porifera erect\n",
"698 Porifera erect\n",
"699 Porifera erect irreg whiteyellow\n",
"700 Porifera erect small\n",
"701 Porifera erect white\n",
"702 Porifera erect white irreg\n",
"703 Porifera Esperiopsis-like yellow\n",
"704 Porifera fallen over by trawl impact?\n",
"705 Porifera fan\n",
"706 Porifera fan big\n",
"707 Porifera fan fragment\n",
"708 Porifera fan like\n",
"709 Porifera fan shape\n",
"710 Porifera fan shaped\n",
"711 Porifera fan small\n",
"712 Porifera fan white\n",
"713 Porifera fan yellow\n",
"714 Porifera fanshaped\n",
"715 POrifera fanshaped white\n",
"716 porifera feces\n",
"717 Porifera feces\n",
"718 Porifera finger\n",
"719 porifera fingeronge\n",
"720 Porifera finger white\n",
"721 porifera fingerlike\n",
"722 Porifera flat on bottom\n",
"723 Porifera flower pot\n",
"724 Porifera fluffy\n",
"725 Porifera fragment\n",
"726 Porifera fragments\n",
"727 Porifera geodia like\n",
"728 Porifera glinsende\n",
"729 Porifera golfball\n",
"730 Porifera green\n",
"731 Porifera green small\n",
"732 Porifera green small trompet\n",
"733 Porifera green trompet small\n",
"734 Porifera green urne small\n",
"735 Porifera greenyellow\n",
"736 Porifera grey\n",
"737 Porifera grey ?\n",
"738 Porifera grey irreg\n",
"739 Porifera grey irreg medium\n",
"740 Porifera grey irreg small\n",
"741 Porifera grey medium\n",
"742 Porifera grey medium irreg\n",
"743 Porifera grey round\n",
"744 Porifera grey small\n",
"745 Porifera grey trumpet\n",
"746 Porifera hairy\n",
"747 Porifera Haliclona like\n",
"748 porifera Hexactinellida \"Farrea\"\n",
"749 Porifera Hexatinellida polychaete-like white\n",
"750 Porifera indet\n",
"751 Porifera Indet\n",
"752 Porifera indet (Axella-like broken off?)\n",
"753 Porifera indet (Phakellia and Axinella like)\n",
"754 Porifera indet (Phakellia and Axinella like)\n",
"755 Porifera indet (yellow, small, round)\n",
"756 Porifera indet Axinella-like?\n",
"757 Porifera indet Haliclona\n",
"758 Porifera indet haliclona?\n",
"759 Porifera indet Haliclona?\n",
"760 Porifera indet Halicloona\n",
"761 Porifera indet Halicolona?\n",
"762 Porifera indet irregular\n",
"763 Porifera indet irregular yellow\n",
"764 Porifera indet orange\n",
"765 porifera indet orange irregular\n",
"766 Porifera indet orange oval\n",
"767 Porifera indet small bat-like\n",
"768 Porifera indet white\n",
"769 Porifera indet white small\n",
"770 Porifera indet yellow\n",
"771 Porifera indet yellow flat\n",
"772 Porifera indet yellow small round\n",
"773 Porifera indet yellow?\n",
"774 Porifera indet yellowish\n",
"775 Porifera indet dead\n",
"776 Porifera indet many osculi\n",
"777 Porifera indet round\n",
"778 Porifera indet white with papillas\n",
"779 Porifera indet( antho)\n",
"780 Porifera indet?\n",
"781 Porifera ireegular white medium\n",
"782 Porifera ireegular white small\n",
"783 Porifera irreg\n",
"784 Porifera irreg fan shaped\n",
"785 Porifera irreg white\n",
"786 porifera irregular\n",
"787 Porifera irregular\n",
"788 Porifera irregular branched\n",
"789 Porifera irregular orange\n",
"790 Porifera irregular orange small\n",
"791 Porifera irregular small\n",
"792 Porifera irregular white\n",
"793 Porifera irregular white large\n",
"794 Porifera irregular white medium\n",
"795 Porifera irregular white small\n",
"796 Porifera irregular with pores)\n",
"797 Porifera irregular yellow\n",
"798 Porifera irregular yellow large\n",
"799 Porifera irregular yellow medium\n",
"800 Porifera irregular yellow small\n",
"801 Porifera irrgular\n",
"802 Porifera knocked over\n",
"803 Porifera l?srevet\n",
"804 Porifera lamp shade\n",
"805 Porifera lamp shadeonge\n",
"806 porifera large\n",
"807 Porifera large\n",
"808 Porifera large ed in sediment\n",
"809 Porifera large dirty\n",
"810 Porifera large irreg\n",
"811 Porifera large varia\n",
"812 Porifera large white\n",
"813 Porifera large white fan shaped\n",
"814 Porifera large white fan shaped\n",
"815 Porifera large white irreg\n",
"816 Porifera large white large\n",
"817 Porifera large white urne\n",
"818 Porifera large white encrusting\n",
"819 Porifera large white irreg\n",
"820 Porifera large yellow\n",
"821 Porifera large yellow-brown\n",
"822 Porifera large yellow brown\n",
"823 porifera leafy\n",
"824 Porifera like\n",
"825 Porifera like branched small\n",
"826 Porifera like green\n",
"827 Porifera like hairy andikey\n",
"828 Porifera like round Orange\n",
"829 porifera like yellow fuzzy\n",
"830 Porifera lollipopsponge like\n",
"831 Porifera Lophelia like on distance\n",
"832 Porifera medium\n",
"833 Porifera medium white round\n",
"834 Porifera medium antho like yellow\n",
"835 Porifera medium irreg\n",
"836 Porifera medium round\n",
"837 Porifera medium white\n",
"838 Porifera medium white irreg\n",
"839 Porifera medium white round\n",
"840 Porifera medium white fan shaped\n",
"841 Porifera medium white irreg\n",
"842 Porifera medium white round\n",
"843 Porifera medium white fan shaped\n",
"844 Porifera medium white irreg\n",
"845 Porifera medium white irregular\n",
"846 Porifera medium white round\n",
"847 Porifera medium whiteiky\n",
"848 Porifera medium whiteyellow\n",
"849 Porifera medium whiteyellow irreg\n",
"850 Porifera medium whiteyellow round\n",
"851 Porifera medium whiteyellowiky\n",
"852 Porifera medium yellow\n",
"853 Porifera medium yellow urne\n",
"854 Porifera medium yellow fan shaped\n",
"855 Porifera medium yellow irreg\n",
"856 Porifera medium yellow round\n",
"857 Porifera medium yellow round irreg\n",
"858 Porifera medium yellow round round\n",
"859 Porifera medium big\n",
"860 Porifera medium brown\n",
"861 Porifera Medium brown\n",
"1 Porifera medium irreg\n",
"2 Porifera medium orange\n",
"3 Porifera medium round\n",
"4 Porifera medium white\n",
"5 Porifera medium white big hole\n",
"6 Porifera medium white irreg\n",
"7 Porifera medium white round\n",
"8 Porifera medium whte\n",
"9 Porifera medium yellow\n",
"10 Porifera medium yellow round\n",
"11 Porifera medium yellowbrown\n",
"12 Porifera mediumwhite\n",
"13 Porifera mediumyellow\n",
"14 Porifera mediuml white round\n",
"15 Porifera mediuml whiteyellow round\n",
"16 Porifera mediuml white\n",
"17 Porifera memdium white\n",
"18 Porifera mudder\n",
"19 Porifera mushroom\n",
"20 Porifera mushroom like\n",
"21 Porifera nmedium white\n",
"22 Porifera off-white hairy with long hair-like appendages\n",
"23 Porifera off white flak on stalk\n",
"24 Porifera offwhite\n",
"25 Porifera offwhite branched\n",
"26 Porifera on Brachipoda\n",
"27 Porifera on stilk\n",
"28 Porifera on stilk small\n",
"29 porifera orange\n",
"30 Porifera orange\n",
"31 Porifera orange bat\n",
"32 Porifera orange medium\n",
"33 Porifera orange round\n",
"34 Porifera orange small\n",
"35 Porifera orange small round\n",
"36 Porifera orange yellow\n",
"37 Porifera pale small\n",
"38 Porifera papilla\n",
"39 Porifera peach\n",
"40 Porifera Phakelia rugosa like\n",
"41 Porifera Phakellia-like\n",
"42 Porifera Phakellia-like ON BOULDER\n",
"43 Porifera phakellia like\n",
"44 Porifera phakellia likee\n",
"45 Porifera pigear\n",
"46 Porifera pink\n",
"47 Porifera pink medium\n",
"48 Porifera pink round\n",
"49 Porifera pink round with fur\n",
"50 Porifera pink small\n",
"51 Porifera pinnsvin\n",
"52 Porifera purple\n",
"53 Porifera questionmark fluffy\n",
"54 Porifera red small\n",
"55 porifera round\n",
"56 Porifera round\n",
"57 Porifera round apricot small\n",
"58 Porifera round beige\n",
"59 Porifera round big\n",
"60 Porifera round big white\n",
"61 Porifera round fan shaped\n",
"62 Porifera round golfball\n",
"63 Porifera round medium\n",
"64 Porifera round mud ed\n",
"65 porifera round on Phakellia\n",
"66 Porifera round orange\n",
"67 Porifera round pale medium\n",
"68 Porifera round pink hairy\n",
"69 Porifera round red\n",
"70 porifera round small\n",
"71 Porifera round small\n",
"72 Porifera round small cup cake\n",
"73 Porifera round small grey\n",
"74 Porifera round small orange\n",
"75 Porifera round small white\n",
"76 Porifera round small with small papillae\n",
"77 Porifera round small with yellow star shaped field in the senter\n",
"78 Porifera round small yellow\n",
"79 Porifera roundiky\n",
"80 porifera round white\n",
"81 Porifera round white\n",
"82 porifera round white small\n",
"83 Porifera round white small\n",
"84 porifera round yellow\n",
"85 Porifera round yellow\n",
"86 porifera round yellow small\n",
"87 Porifera round yellow small\n",
"88 Porifera round yellowonge with pores)\n",
"89 Porifera round yellowonge)\n",
"90 Porifera round yellow white\n",
"91 Porifera sifon\n",
"92 Porifera siphon\n",
"93 Porifera smal percen whiteyellow round\n",
"94 Porifera smal white\n",
"95 porifera small\n",
"96 Porifera small\n",
"97 Porifera small green\n",
"98 Porifera small antho like\n",
"99 Porifera small apricot\n",
"100 Porifera small black\n",
"101 Porifera small branched\n",
"102 Porifera small brown\n",
"103 Porifera small brown round\n",
"104 Porifera small buried\n",
"105 Porifera small Density white\n",
"106 Porifera small dirty\n",
"107 Porifera small dirtyyellow round\n",
"108 Porifera small fingerbøl\n",
"109 Porifera small fishcake\n",
"110 Porifera small flower\n",
"111 Porifera small funnel\n",
"112 Porifera small green\n",
"113 Porifera small green stem\n",
"114 Porifera small grey\n",
"115 Porifera small grey round\n",
"116 Porifera small irregular\n",
"117 Porifera small mint green\n",
"118 Porifera small orange\n",
"119 Porifera small orange round\n",
"120 Porifera small pale round\n",
"121 Porifera small Percent\n",
"122 Porifera small white\n",
"123 Porifera small white irreg\n",
"124 Porifera small whiteyellow round\n",
"125 Porifera small white\n",
"126 Porifera small piggsopp\n",
"127 Porifera small pink\n",
"128 Porifera small pink round\n",
"129 Porifera small red\n",
"130 Porifera small round\n",
"131 Porifera small round long siphon\n",
"132 Porifera small roundiky\n",
"133 Porifera small round white\n",
"134 Porifera small small\n",
"135 Porifera smalliky\n",
"136 porifera small stalk\n",
"137 Porifera small stalked\n",
"138 Porifera small stalked urne\n",
"139 Porifera small sycon\n",
"140 Porifera small trakt\n",
"141 porifera small transparent\n",
"142 Porifera small urne green\n",
"143 Porifera small urne pink\n",
"144 Porifera small var\n",
"145 Porifera small varia\n",
"146 porifera small white\n",
"147 Porifera small white\n",
"148 Porifera small white bat\n",
"149 Porifera small white irreg\n",
"150 Porifera small white Spiky\n",
"151 Porifera small white stalked\n",
"152 Porifera small white baseball\n",
"153 Porifera small white branched\n",
"154 Porifera small white cup cake\n",
"155 Porifera small white cupcake\n",
"156 Porifera small white erect\n",
"157 Porifera small white fan shaped\n",
"158 Porifera small white irreg\n",
"159 Porifera small white irregular\n",
"160 Porifera small white on stalk\n",
"161 Porifera small white round\n",
"162 Porifera small white round big osculi\n",
"163 Porifera small white round big siphon\n",
"164 Porifera small white round centarl operculum\n",
"165 Porifera small white round central operculum\n",
"166 Porifera small white round dirty but celan around small osculi on top\n",
"167 Porifera small white roundiky\n",
"168 Porifera small white round stalked\n",
"169 Porifera small white round sun flower\n",
"170 Porifera small white round trumpet\n",
"171 Porifera small white round vindu\n",
"172 Porifera small white round with handle\n",
"173 Porifera small white round with hole on top\n",
"174 Porifera small white stalk\n",
"175 Porifera small white trompet\n",
"176 Porifera small whitedirty round\n",
"177 Porifera small whiteyellow\n",
"178 Porifera small whiteyellow irreg\n",
"179 Porifera small whiteyellow round\n",
"180 Porifera small whiteyellow round many siphones\n",
"181 Porifera small whiteyellow round sentral osculi\n",
"182 Porifera small whiteyellow round vindu\n",
"183 Porifera small with siphon\n",
"184 porifera small yellow\n",
"185 Porifera small yellow\n",
"186 Porifera small yellow-brown\n",
"187 Porifera small yellow large siphons\n",
"188 Porifera small yellow erect\n",
"189 Porifera small yellow fan\n",
"190 porifera small yellow green\n",
"191 Porifera small yellow ireg\n",
"192 Porifera small yellow irreg\n",
"193 Porifera small yellow round\n",
"194 Porifera small yellow round big pores\n",
"195 Porifera small yellow round central osculi\n",
"196 Porifera small yellow round stalked\n",
"197 Porifera small yellow round with stalk\n",
"198 Porifera small yellowiky\n",
"199 Porifera small yellowgreen round\n",
"200 Porifera small yellowvirreg\n",
"201 Porifera small coral\n",
"202 Porifera small irregular green\n",
"203 Porifera small medium round\n",
"204 Porifera small various\n",
"205 Porifera small whiite\n",
"206 Porifera small white Density\n",
"207 Porifera small whte\n",
"208 Porifera small yelllow\n",
"209 Porifera small yellowbrown\n",
"210 Porifera smallwhite\n",
"211 Porifera smallyellow\n",
"212 Porifera smallmedium white\n",
"213 Porifera smal l white\n",
"214 porifera solitary white\n",
"215 Poriferaikes\n",
"216 Poriferaikey\n",
"217 Porifera Spikey white\n",
"218 Poriferaiky round small\n",
"219 Porifera stalk\n",
"220 porifera stalked\n",
"221 Porifera stalked\n",
"222 Porifera stalked bat\n",
"223 Porifera stalked fan shaped\n",
"224 Porifera stem tall\n",
"225 Porifera stick\n",
"226 Porifera stilk\n",
"227 Porifera stilket cup\n",
"228 Porifera stilket urne\n",
"229 Porifera stlked parabol\n",
"230 Porifera string yellow\n",
"231 porifera sugekopp\n",
"232 Porifera sugekopp\n",
"233 POrifera sugekopp\n",
"234 Porifera sulphur-yellow encrusting)\n",
"235 Porifera sulphur yellow big\n",
"236 porifera sulphur yellow encrusting\n",
"237 Porifera sulphur yellow encrusting\n",
"238 Porifera tall irregular yellowonge)\n",
"239 Porifera tall kremmerhus\n",
"240 Porifera tennisball\n",
"241 Porifera thin branched\n",
"242 Porifera thread like\n",
"243 Porifera toiletbrush\n",
"244 Porifera transparent bat\n",
"245 Porifera transparent small\n",
"246 Porifera tree like\n",
"247 Porifera tube\n",
"248 Porifera tube like\n",
"249 Porifera tube like hairy\n",
"250 Porifera Unregular papillae\n",
"251 Porifera urn colony\n",
"252 Porifera var\n",
"253 Porifera var medium\n",
"254 Porifera var small\n",
"255 Porifera var small on hyas\n",
"256 Porifera var smalll\n",
"257 Porifera varia\n",
"258 Porifera varia medium\n",
"259 Porifera varia meduim\n",
"260 Porifera varia small\n",
"261 Porifera varia small S\n",
"262 Porifera varios large\n",
"263 Porifera various\n",
"264 Porifera various brown\n",
"265 Porifera various grey\n",
"266 Porifera various on rock\n",
"267 Porifera various small\n",
"268 Porifera various white\n",
"269 Porifera varius white\n",
"270 Porifera vedkubbe\n",
"271 Porifera violet\n",
"272 Porifera whit\n",
"273 porifera white\n",
"274 Porifera white\n",
"275 Porifera white antho like\n",
"276 Porifera white irreg medium\n",
"277 Porifera white medium round\n",
"278 Porifera white small\n",
"279 Porifera white bat\n",
"280 Porifera white bat shaped\n",
"281 Porifera white big\n",
"282 Porifera white big fanshaped\n",
"283 Porifera white big irregular\n",
"284 Porifera white big urne\n",
"285 Porifera white branched\n",
"286 Porifera white branched medium\n",
"287 porifera white bush\n",
"288 Porifera white bush\n",
"289 Porifera white coral\n",
"290 Porifera white dirty small\n",
"291 Porifera white eggmass\n",
"292 Porifera white encrusting\n",
"293 Porifera white erect\n",
"294 Porifera white fan\n",
"295 porifera white fan large\n",
"296 Porifera white fan shape\n",
"297 porifera white fan shaped\n",
"298 Porifera white fan shaped\n",
"299 Porifera White fan shaped\n",
"300 Porifera white fanshaped\n",
"301 Porifera white fanshaped small\n",
"302 Porifera white flake\n",
"303 Porifera white fragment\n",
"304 Porifera white frynsete large\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb6577eb8>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"305 Porifera white golfonge)\n",
"306 Porifera white golfball\n",
"307 Porifera white ireg medium\n",
"308 Porifera white irreg\n",
"309 Porifera white irreg big\n",
"310 Porifera white irreg large\n",
"311 Porifera white irreg mediium\n",
"312 Porifera white irreg medium\n",
"313 Porifera white irreg MEDIUM\n",
"314 Porifera white irreg smal l\n",
"315 Porifera white irreg small\n",
"316 Porifera white irregular\n",
"317 porifera white irregular large\n",
"318 Porifera white irregular large\n",
"319 Porifera white irregular medium\n",
"320 Porifera white irregular small\n",
"321 Porifera white irresular\n",
"322 Porifera white irresular erect\n",
"323 Porifera white irresular small\n",
"324 Porifera white large\n",
"325 Porifera white large ireg\n",
"326 Porifera white large fan shape\n",
"327 Porifera white large fan shaped\n",
"328 Porifera white large flat\n",
"329 Porifera white large irreg\n",
"330 Porifera white large network\n",
"331 Porifera white long\n",
"332 Porifera white mall\n",
"333 Porifera white medium\n",
"334 Porifera white medium fan shaped\n",
"335 Porifera white medium fan\n",
"336 Porifera white medium fan shaped\n",
"337 Porifera white medium iireg\n",
"338 Porifera white medium ireg\n",
"339 Porifera white medium irreg\n",
"340 Porifera white medium irreg fan shape\n",
"341 Porifera white medium irreg mycale like\n",
"342 Porifera white medium on boulder\n",
"343 Porifera white medium round\n",
"344 Porifera white mediumiky\n",
"345 Porifera white medium urn\n",
"346 Porifera white medium urne shaped\n",
"347 Porifera white mushroom\n",
"348 porifera white round\n",
"349 Porifera white round\n",
"350 Porifera white round medium\n",
"351 Porifera white round mushroom like\n",
"352 Porifera white round on stalk\n",
"353 Porifera white round small\n",
"354 Porifera white siphon\n",
"355 porifera white small\n",
"356 Porifera white small\n",
"357 Porifera white small banched\n",
"358 Porifera white small bat shaped on rock\n",
"359 Porifera white small big pores\n",
"360 Porifera white small big siphon\n",
"361 Porifera white small branched\n",
"362 Porifera white small calcerous\n",
"363 Porifera white small central operculum\n",
"364 Porifera white small cup cake\n",
"365 Porifera white small cupcake\n",
"366 Porifera white small erect\n",
"367 Porifera white small fan\n",
"368 Porifera white small finger\n",
"369 Porifera white small ireg\n",
"370 Porifera white small irreg\n",
"371 Porifera white small irregular\n",
"372 Porifera white small longikes\n",
"373 Porifera white small mine\n",
"374 Porifera white small oneike\n",
"375 Porifera white small age\n",
"376 Porifera white small round\n",
"377 Porifera white smalliky\n",
"378 Porifera white smalliny\n",
"379 Porifera white small stalk\n",
"380 Porifera white small stalked\n",
"381 Porifera white small stalked cup\n",
"382 Porifera white small standing flat\n",
"383 Porifera white small three siphons\n",
"384 Porifera white small tube shaped\n",
"385 Porifera white small urne shaped\n",
"386 Porifera whiteiky\n",
"387 Porifera whiteiky elongated\n",
"388 porifera white stalk\n",
"389 Porifera white stalk\n",
"390 Porifera white stalked\n",
"391 Porifera white stalked small\n",
"392 Porifera white stalked thin\n",
"393 Porifera white structure lace-like small round\n",
"394 Porifera white transparent\n",
"395 Porifera white transparent small\n",
"396 Porifera white unidentified\n",
"397 Porifera white urne\n",
"398 Porifera white varia\n",
"399 Porifera white various\n",
"400 porifera white with several octulie\n",
"401 porifera white yellow round flat\n",
"402 Porifera whitedirty\n",
"403 Porifera whitedirty big\n",
"404 Porifera whitedirty big with Aplysilla\n",
"405 Porifera whitedirty irreg small\n",
"406 Porifera whitedirty large\n",
"407 Porifera whitedirty medium\n",
"408 Porifera whitedirty small\n",
"409 Porifera whitegrey\n",
"410 Porifera whitegrey big\n",
"411 Porifera whitegrey medium\n",
"412 Porifera whitegrey round small\n",
"413 Porifera whitegrey small\n",
"414 Porifera whiteirreg medium\n",
"415 Porifera whiteround medium\n",
"416 Porifera whitesmall\n",
"417 Porifera whitey smalll\n",
"418 Porifera whiteyellow\n",
"419 Porifera whiteyellow large\n",
"420 Porifera whiteyellow big\n",
"421 Porifera whiteyellow branched\n",
"422 Porifera whiteyellow branched rootlike\n",
"423 Porifera whiteyellow dirty\n",
"424 Porifera whiteyellow fan shaped\n",
"425 Porifera whiteyellow irreg\n",
"426 Porifera whiteyellow irreg small\n",
"427 Porifera whiteyellow irregular\n",
"428 Porifera whiteyellow irregular small\n",
"429 Porifera whiteyellow large\n",
"430 Porifera whiteyellow large irregular\n",
"431 Porifera whiteyellow mediuim round\n",
"432 Porifera whiteyellow medium\n",
"433 Porifera whiteyellow medium irreg\n",
"434 Porifera whiteyellow medium round\n",
"435 Porifera whiteyellow round\n",
"436 Porifera whiteyellow round flat\n",
"437 Porifera whiteyellow round medium\n",
"438 Porifera whiteyellow round small\n",
"439 Porifera whiteyellow small\n",
"440 Porifera whiteyellow smalll\n",
"441 Porifera whiteyellowiny\n",
"442 Porifera whiteyellow stilk\n",
"443 Porifera whiteyellow transparent medium\n",
"444 Porifera whiteyelow large\n",
"445 Porifera whitw medium\n",
"446 Porifera whityellow irregular\n",
"447 Porifera whityellow small\n",
"448 Porifera window like\n",
"449 Porifera withikes\n",
"450 Porifera with warts\n",
"451 Porifera wncruting small yellow\n",
"452 Porifera yello small\n",
"453 porifera yellow\n",
"454 Porifera yellow\n",
"455 POrifera yellow\n",
"456 porifera yellow-bat\n",
"457 Porifera yellow-bat\n",
"458 Porifera yellow fan shaped\n",
"459 Porifera yellow iky\n",
"460 Porifera yellow baseball\n",
"461 Porifera yellow baseballbat\n",
"462 porifera yellow bat\n",
"463 Porifera yellow bat\n",
"464 Porifera yellow bat shaped-like (don't have a stem really)\n",
"465 Porifera yellow big\n",
"466 Porifera yellow big flak\n",
"467 Porifera yellow branched\n",
"468 Porifera yellow branched medium\n",
"469 Porifera yellow brown\n",
"470 Porifera yellow brown irregular\n",
"471 Porifera yellow brown small\n",
"472 Porifera yellow cidaris\n",
"473 Porifera yellow cup\n",
"474 Porifera yellow dirty\n",
"475 Porifera yellow dirty round small\n",
"476 Porifera yellow dirty small\n",
"477 porifera yellow encrusting\n",
"478 Porifera yellow encrusting\n",
"479 Porifera yellow encrustingiky)\n",
"480 Porifera yellow encrustingonge)\n",
"481 Porifera yellow erect\n",
"482 Porifera yellow fan shaped\n",
"483 Porifera yellow irreg\n",
"484 Porifera yellow irreg large\n",
"485 Porifera yellow irreg medium\n",
"486 Porifera yellow irreg small\n",
"487 Porifera yellow irregular\n",
"488 Porifera yellow irregular breadcrumonge?\n",
"489 Porifera yellow large\n",
"490 Porifera yellow large fan shaped\n",
"491 Porifera yellow large urn\n",
"492 Porifera yellow long stick\n",
"493 porifera yellow medium\n",
"494 Porifera yellow medium\n",
"495 Porifera yellow medium ?\n",
"496 Porifera yellow medium bowl\n",
"497 Porifera yellow medium irreg\n",
"498 Porifera yellow medium irregular\n",
"499 Porifera yellow medium round\n",
"500 Porifera yellow medium urn shaped\n",
"501 Porifera yellow mushroom\n",
"502 Porifera yellow mycale like\n",
"503 Porifera yellow pale small\n",
"504 Porifera yellow polymastia like\n",
"505 porifera yellow round\n",
"506 Porifera yellow round\n",
"507 Porifera yellow round medium\n",
"508 Porifera yellow samll\n",
"509 Porifera yellow siphon\n",
"510 porifera yellow small\n",
"511 Porifera yellow small\n",
"512 Porifera Yellow small\n",
"513 Porifera yellow small bat\n",
"514 Porifera yellow small big osculi\n",
"515 Porifera yellow small big siphon\n",
"516 Porifera yellow small cup\n",
"517 Porifera yellow small erect\n",
"518 Porifera yellow small irreg\n",
"519 Porifera yellow small lollypop\n",
"520 Porifera yellow small mine\n",
"521 Porifera yellow small on stem sycon\n",
"522 Porifera yellow small on stilk\n",
"523 Porifera yellow small polymastia\n",
"524 Porifera yellow small polymastia like\n",
"525 porifera yellow small round\n",
"526 Porifera yellow small round\n",
"527 Porifera yellow smalliky\n",
"528 Porifera yellow small stalked\n",
"529 Porifera yellow small trompet\n",
"530 Porifera yellowiked small\n",
"531 Porifera yellowikey\n",
"532 Porifera yellowiky\n",
"533 Porifera yellowonge encrusting on cobble)\n",
"534 Porifera yellowonge with pores)\n",
"535 Porifera yellowonge)\n",
"536 Porifera yellow stalked\n",
"537 Porifera yellow urne\n",
"538 Porifera yellow urneformet\n",
"539 Porifera yellow withines\n",
"540 Porifera yellowbat\n",
"541 Porifera yellowbrown\n",
"542 Porifera yellowbrown axinella like\n",
"543 Porifera yellowbrown Axinella like\n",
"544 Porifera yellowbrown irreg\n",
"545 Porifera yellowbrown irregular\n",
"546 Porifera yellowbrown medium\n",
"547 Porifera yellowbrown small\n",
"548 Porifera Yellowbrownish(mycale like)\n",
"549 Porifera yellowdirty\n",
"550 Porifera yellowdirty medium\n",
"551 Porifera yellowdirty small\n",
"552 Porifera yellowgreen\n",
"553 Porifera yellowgreen small\n",
"554 Porifera yellowgreen trumpet\n",
"555 Porifera yellowish round big\n",
"556 Porifera yellowmedium\n",
"557 Porifera yellwo small\n",
"558 Porifera\n",
"559 Porifera( brown small)\n",
"560 Porifera(brown small)\n",
"561 Porifera,\n",
"562 Porifera, apricot\n",
"563 Porifera, Bate\n",
"564 Porifera, bateshaped\n",
"565 Porifera, batsponge\n",
"566 Porifera, dark encrusting\n",
"567 Porifera, dark red incrusting\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb62f9b38>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"568 Porifera, flat yellow\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb6334dd8>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb49b2ef0>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"569 Porifera, incrusting offwhite\n",
"570 Porifera, incrusting white\n",
"571 Porifera, incrusting yellow-offwhite\n",
"572 Porifera, many osculi\n",
"573 Porifera, Mycale-like\n",
"574 Porifera, offwhite\n",
"575 Porifera, offwhite incrusting\n",
"576 Porifera, offwhite small\n",
"577 Porifera, offwhite small nearly round\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb69abe80>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb6515ef0>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"578 Porifera, orange encrusting\n",
"579 Porifera, orange incrusting\n",
"580 Porifera, Polymastia-like yellow\n",
"581 Porifera, red encrusting\n",
"582 Porifera, small round\n",
"583 Porifera, small various\n",
"584 Porifera, small yellow\n",
"585 Porifera, white\n",
"586 Porifera, white encrusting\n",
"587 Porifera, white incrusting\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb68b8710>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"588 Porifera, white small\n",
"589 Porifera, yellow\n",
"590 Porifera, yellow encrusting\n",
"591 Porifera, yellow finger-shaped\n",
"592 Porifera, yellow incrusting\n",
"593 Porifera, yellow round\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb43cd3c8>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"594 Porifera, yellow small\n",
"595 Porifera, yellow small round\n",
"596 Porifera branched\n",
"597 Porifera brown\n",
"598 Porifera brown siphons\n",
"599 Porifera fragment\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb6318438>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"600 Porifera medium\n",
"601 Porifera medium white big hole\n",
"602 Porifera medium white irreg\n",
"603 Porifera medium white ireg\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb461ee10>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
"6428 Porifera small yellow\n",
"6429 Porifera white\n",
"6430 Porifera white irreg\n",
"6431 Porifera yellow\n",
"6432 Porifera?\n",
"6433 Porifera? (yellow irregularonge)\n",
"6434 Porifera? dirty small vortet\n",
"6435 Porifera? indet white with tentacle-like features\n",
"6436 Porifera? yellow round on top of boulder\n",
"6437 Porifera?, round yellowish\n",
"6438 Porifera??\n",
"6439 Porifera7 Tunicata orange\n",
"6440 Poriferabranched\n",
"6442 Poriferamedium white\n",
"6443 Poriferaq apricot color\n",
"6444 Poriferas irregular white medium\n",
"6445 Poriferayellow big ovale\n",
"6448 Poriifera peach\n",
"6450 Portunoidea\n",
"6451 posedyr\n",
"6452 possible trawl mark\n",
"6453 Pourtalesia\n",
"6456 Pourtalesia jeffreysi\n",
"6458 Priapulida\n",
"6461 Priapulidae?\n",
"6463 Primnoa dead\n",
"6464 Primnoa resedaeformis\n",
"6467 Primnoa resedaeformis fragment\n",
"6468 Primnoap (orange)\n",
"6469 Promnoa\n",
"6470 Prosobranchia\n",
"6471 Prosobranchiata\n",
"6472 Prosobranchiata eggcapsules\n",
"6474 Protanthea simplex\n",
"6475 Protanthea simplex\n",
"6477 Protanthea simplex\n",
"6478 Protanthea simplex?\n",
"6479 prothantea simplex\n",
"6481 Pseudamussium peslutrae\n",
"6482 Pseudamussium septenradiatus\n",
"6483 Pseudarchaster\n",
"6486 Pseudarchasteridae\n",
"6487 Pseudosuberites\n",
"6488 Psolus\n",
"6490 Psolus phantapus\n",
"6491 Psolus\n",
"6492 Psolus\n",
"6493 Psolus squamatus\n",
"6495 pteraster\n",
"6496 Pteraster\n",
"6499 Pteraster like\n",
"6500 Pteraster militaris\n",
"6501 Pteraster obscurus\n",
"6502 Pteraster pulvillus\n",
"6503 Pteraster\n",
"6505 Pteraster\n",
"6510 Ptychogastria polaris\n",
"6512 Puncturella noachina\n",
"6513 Putebryozo\n",
"6514 Pycnogonida\n",
"6516 Pycnogonida further back\n",
"6517 Pycnogonida like\n",
"6518 Pycnogonida sandy\n",
"6521 Pycnogonidae\n",
"6522 Pycnogonidae big\n",
"6525 Pycnogonidae like\n",
"6526 Pygnogonida\n",
"6527 Quasillina cd\n",
"6530 Quasillina\n",
"6531 Quasillina\n",
"6532 Quasillina\n",
"6534 Questionmark polychaete\n",
"6535 Radicipes\n",
"6536 Radicipes\n",
"6537 Radicipes\n",
"6538 Radicipes?\n",
"6539 raja\n",
"6540 Raja\n",
"6541 Raja clavata\n",
"6542 Raja egg\n",
"6543 Raja fullae\n",
"6544 Raja fyllae\n",
"6545 Raja fylllae\n",
"6546 Raja lintea\n",
"6547 Raja radiata\n",
"6548 Raja\n",
"6549 raja\n",
"6550 Raja\n",
"6551 Raja egg\n",
"6554 Rajella fyllae\n",
"6557 Rajellidae\n",
"6558 rajidae\n",
"6559 Rajidae\n",
"6561 Rajidae\n",
"6562 Rajiformes\n",
"6565 Rajiformes\n",
"6566 Red algae\n",
"6568 Red algae leaf\n",
"6569 Red algae varia\n",
"6570 Red algae varia\n",
"6571 Red algae various\n",
"6572 Reinhardtius hippoglossoides\n",
"6575 Reteporella beaniana\n",
"6579 Rhabdammina\n",
"6581 Rhabdammina Percent\n",
"6582 Rhabdammina\n",
"6583 Rhichocrinus\n",
"6584 rhizocrinus\n",
"6585 Rhizocrinus\n",
"6586 Rhizocrinus\n",
"6587 Rhizocrinus (?)\n",
"6588 Rhizocrinus like\n",
"6589 rhizocrinus lofotensis\n",
"6590 Rhizocrinus\n",
"6591 Rhizocrinus stem\n",
"6592 Rhizocrinus stilk\n",
"6593 rhizocrinus with actiniaria\n",
"6594 Rhizocrinus with actiniaria\n",
"6595 rhizocrinus with amphipoda\n",
"6596 Rhizocrinus with amphipoda on\n",
"6597 Rhizocrinus\n",
"6598 rhizpcrinus\n",
"6599 Rhodichthys regina\n",
"6601 Rhodophyta\n",
"6603 Rhodophyta encrusting dark red\n",
"6604 Rhodophyta encrusting dark red\n",
"6605 Rhodophyta blade\n",
"6606 Ridges with bacterial mat or just light color ...\n",
"6607 Ridicipes-like\n",
"6608 Ridicipes\n",
"6609 rope\n",
"6610 Rosa ufo\n",
"6611 Rosa Ufo\n",
"6612 Rossia\n",
"6614 Rossia\n",
"6615 round transparent\n",
"6616 Rubbish\n",
"6617 Rubbish bag\n",
"6618 Rubbish bottle\n",
"6619 Rubbish can\n",
"6620 Rubbish cardboard\n",
"6621 Rubbish carton\n",
"6623 Rubbish fishing gear cable\n",
"6624 Rubbish Fishingear\n",
"6626 Rubbish Fishingear line\n",
"6627 Rubbish Fishingear longline\n",
"6628 Rubbish Glass bottle\n",
"6629 Rubbish glove\n",
"6630 Rubbish Hard plastic\n",
"6631 Rubbish Hard plastic bøtenål\n",
"6632 Rubbish indet\n",
"6633 Rubbish left glove\n",
"6634 Rubbish majonestube\n",
"6635 Rubbish Metal\n",
"6636 Rubbish Net\n",
"6637 Rubbish Rope\n",
"6641 Rubbish Soft plastic\n",
"6643 Rubbish Soft plastic?\n",
"6644 Rubbish square plate\n",
"6645 Rubbish unidentified\n",
"6646 Rubbish Wire\n",
"6651 Rubbish with porifera encrusting\n",
"6652 Rubbish Wood\n",
"6653 Rubbish bottle\n",
"6654 Rubbish car tyre\n",
"6655 Rubbish ceramic broken plate\n",
"6657 Rubbish clothes\n",
"6658 Rubbish Fishingear\n",
"6659 Rubbish Fishingear longline\n",
"6660 Rubbish Fishingear line\n",
"6661 Rubbish Glass bottle\n",
"6662 Rubbish Hard plastic\n",
"6663 Rubbish indet\n",
"6664 Rubbish indet ring\n",
"6665 Rubbish Line\n",
"6666 Rubbish Metal\n",
"6667 Rubbish Metal band\n",
"6668 Rubbish Net\n",
"6669 Rubbish plastic\n",
"6670 Rubbish Rope\n",
"6672 Rubbish rope0\n",
"6673 Rubbish rubber glove\n",
"6674 Rubbish Soft plastic\n",
"6675 Rubbish Wire\n",
"6676 Rubbish Wood\n",
"6677 Sabellaridae\n",
"6678 Sabellida long\n",
"6679 Sabellida tube long\n",
"6680 Sabellida tube short\n",
"6681 Sabellida tubes short\n",
"6682 sabellidae\n",
"6683 Sabellidae\n",
"6684 Sabellidae-tubes\n",
"6685 Sabellidae\n",
"6686 Sabellidae\n",
"6687 Sabellidae = hydrozoa?\n",
"6691 Sabellidae\n",
"6692 Sabellidae density\n",
"6693 Sabellidae like\n",
"6694 Sabellidae like small\n",
"6695 Sabellidae long\n",
"6696 Sabellidae Percent\n",
"6697 Sabellidae short\n",
"6699 Sabellidae short\n",
"6700 Sabellidae\n",
"6701 Sabellidae tentacle crone\n",
"6702 Sabellidae tube\n",
"6705 Sabellidae tube\n",
"6706 Sabellidae tube long\n",
"6707 Sabellidae tube short\n",
"6708 Sabellidae tube thick\n",
"6710 Sabellidae tube?\n",
"6711 Sabellidae tubes\n",
"6712 Sabellidae tubes\n",
"6713 Sabellidae tubes\n",
"6714 Sabellidae tubes\n",
"6715 Sabellidae tubes\n",
"6718 Sabellidae\n",
"6723 Sabellidae?\n",
"6724 Sabellidae\n",
"6725 Sabinea\n",
"6726 Saccharina latissima\n",
"6727 Saduria\n",
"6728 Saduria ?\n",
"6729 Saduria like\n",
"6730 Saduria\n",
"6731 Sand amoeba\n",
"6732 sand mount\n",
"6733 Sand mount\n",
"6738 sand mounts\n",
"6739 Sand mounts\n",
"6740 Sand mounts\n",
"6741 sand tube\n",
"6742 Sand tube\n",
"6743 Sand tubes\n",
"6744 Sand tubes long\n",
"6745 Sand tubes (short)\n",
"6746 Sand tubes (thick)\n",
"6747 Sand tubes (thick)\n",
"6748 Sand tubes (thick) Sandr?r (tykke)\n",
"6749 Sand tubes (thick)Sabellidae\n",
"6752 Sand tubes (thin)\n",
"6753 Sand tubes short\n",
"6754 Sand tubes short thin\n",
"6755 Sand tubes short\n",
"6756 Sand tubes short\n",
"6757 Sand tubes thick\n",
"6758 Sand tubes thick long\n",
"6759 Sand tubes thick with antennas from amphipoda ...\n",
"6760 Sand tubes thick with antennas from crustacean\n",
"6762 Sand tubes thin\n",
"6764 sandmounts vulcano\n",
"6766 Sandtubes (short)\n",
"6767 Scaellidae\n",
"6768 Scafopoda\n",
"6769 Scalpellidae\n",
"6771 Scalpellidae on Tubularia\n",
"6772 Scalpellum\n",
"6773 Scalpellum\n",
"6774 Scaphander lignarius\n",
"6775 Scaphander\n",
"6776 Scaphopda\n",
"6777 Scaphopoda\n",
"6779 Scaphopoda kreps\n",
"6780 Scaphopoda shell\n",
"6781 Scaphopoda shell wit amphipoda\n",
"6782 Scaphopoda shells\n",
"6783 Scaphopoda tube\n",
"6784 Scaphopoda tubes\n",
"6785 Schapoda\n",
"6786 Schapoda shell\n",
"6787 Scleractinia\n",
"6788 Scleractinia p\n",
"6789 Scleractinia p?\n",
"6790 Scleratina\n",
"6791 Sclerocrangon ferox\n",
"6792 Sclerocrangon\n",
"6793 Scophthalmidae\n",
"6794 Scophthalmidae(not sameiecis as before)\n",
"6796 Scorpaniformes\n",
"6798 Scyphozoa\n",
"6799 Scyphozoa? benthic\n",
"6801 Seapen\n",
"6802 Seaweed\n",
"6803 Seaweed fragments\n",
"6810 sebastes\n",
"6811 Sebastes\n",
"6814 Sebastes mantella\n",
"6815 Sebastes marinus\n",
"6816 Sebastes mentella\n",
"6817 Sebastes norvegicus\n",
"6818 Sebastes\n",
"6819 Sebastes\n",
"6821 Sebastes may be dead\n",
"6822 Sebastes\n",
"6823 Sebastes viviparus\n",
"6824 sediment disturbance (old, origin unidentified)\n",
"6825 Sediment hydrozoa\n",
"6826 sediment turbation (origin unidentified)\n",
"6827 sekkedyr\n",
"6828 Sekkedyr\n",
"6829 sekkedyr grey\n",
"6830 Selachii\n",
"6831 Selachii (Shark)\n",
"6835 Semilopecten\n",
"6837 Sepiolidae\n",
"6838 Serpula\n",
"6839 Serpula like\n",
"6840 serpula vermicularis\n",
"6841 Serpula vermicularis\n",
"6842 Serpularidae tube\n",
"6843 Serpulida\n",
"6844 Serpulidae\n",
"6845 Serpulidae ?\n",
"6852 Serpulidae\n",
"6853 Serpulidae like\n",
"6854 Serpulidae on paguridae\n",
"6855 Serpulidae on Rhizocrinus\n",
"6856 Serpulidae opaque shell\n",
"6857 Serpulidae\n",
"6858 Serpulidae tube\n",
"6859 Serpulidae tubes\n",
"6864 sertella\n",
"6865 Sertella\n",
"6866 Sertella-like\n",
"6867 Sertella beaniana\n",
"6868 Sertlariidae\n",
"6869 Sertula\n",
"6870 Sertulaiidae\n",
"6871 Sertularidae\n",
"6872 Sertulariidae\n",
"6875 Several hydrozoaecies\n",
"6876 Shark egg\n",
"6877 Shell\n",
"604 Porifera medium white rounbd\n",
"605 Porifera medium white large papillae\n",
"606 Porifera red\n",
"607 Porifera?\n",
"608 Porifera? (yellow irregularonge)\n",
"609 Porifera? dirty small vortet\n",
"610 Porifera? indet white with tentacle-like features\n",
"611 Porifera? yellow round on top of boulder\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"<suds.sax.document.Document object at 0x7fdcb626fd68>\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Failed, trying again. # Taxonomy\n",
"5606 Porifera medium irreg\n",
"5607 Porifera medium orange\n",
"5608 Porifera medium round\n",
"5609 Porifera medium white\n",
"5610 Porifera medium white big hole\n",
"5611 Porifera medium white irreg\n",
"5612 Porifera medium white round\n",
"5614 Porifera medium whte\n",
"5615 Porifera medium yellow\n",
"5616 Porifera medium yellow round\n",
"5617 Porifera medium yellowbrown\n",
"5618 Porifera mediumwhite\n",
"5619 Porifera mediumyellow\n",
"5620 Porifera mediuml white round\n",
"5621 Porifera mediuml whiteyellow round\n",
"5622 Porifera mediuml white\n",
"5623 Porifera memdium white\n",
"5624 Porifera mudder\n",
"5625 Porifera mushroom\n",
"5626 Porifera mushroom like\n",
"5627 Porifera nmedium white\n",
"5628 Porifera off-white hairy with long hair-like a...\n",
"5629 Porifera off white flak on stalk\n",
"5630 Porifera offwhite\n",
"5631 Porifera offwhite branched\n",
"5632 Porifera on Brachipoda\n",
"5633 Porifera on stilk\n",
"5634 Porifera on stilk small\n",
"5635 porifera orange\n",
"5636 Porifera orange\n",
"5637 Porifera orange bat\n",
"5638 Porifera orange medium\n",
"5640 Porifera orange round\n",
"5641 Porifera orange small\n",
"5643 Porifera orange small round\n",
"5644 Porifera orange yellow\n",
"5646 Porifera pale small\n",
"5647 Porifera papilla\n",
"5649 Porifera peach\n",
"5650 Porifera Phakelia rugosa like\n",
"5651 Porifera Phakellia-like\n",
"5652 Porifera Phakellia-like ON BOULDER\n",
"5653 Porifera phakellia like\n",
"5654 Porifera phakellia likee\n",
"5655 Porifera pigear\n",
"5656 Porifera pink\n",
"5657 Porifera pink medium\n",
"5658 Porifera pink round\n",
"5659 Porifera pink round with fur\n",
"5660 Porifera pink small\n",
"5661 Porifera pinnsvin\n",
"5662 Porifera purple\n",
"5663 Porifera questionmark fluffy\n",
"5665 Porifera red small\n",
"5666 porifera round\n",
"5667 Porifera round\n",
"5669 Porifera round apricot small\n",
"5670 Porifera round beige\n",
"5671 Porifera round big\n",
"5672 Porifera round big white\n",
"5673 Porifera round fan shaped\n",
"5674 Porifera round golfball\n",
"5675 Porifera round medium\n",
"5676 Porifera round mud ed\n",
"5677 porifera round on Phakellia\n",
"5678 Porifera round orange\n",
"5679 Porifera round pale medium\n",
"5680 Porifera round pink hairy\n",
"5681 Porifera round red\n",
"5682 porifera round small\n",
"5683 Porifera round small\n",
"5684 Porifera round small\n",
"5686 Porifera round small cup cake\n",
"5687 Porifera round small grey\n",
"5688 Porifera round small orange\n",
"5689 Porifera round small white\n",
"5690 Porifera round small with small papillae\n",
"5691 Porifera round small with yellow star shaped f...\n",
"5692 Porifera round small yellow\n",
"5694 Porifera roundiky\n",
"5695 porifera round white\n",
"5696 Porifera round white\n",
"5697 porifera round white small\n",
"5698 Porifera round white small\n",
"5699 porifera round yellow\n",
"5700 Porifera round yellow\n",
"5701 Porifera round yellow\n",
"5702 porifera round yellow small\n",
"5703 Porifera round yellow small\n",
"5704 Porifera round yellowonge with pores)\n",
"5705 Porifera round yellowonge)\n",
"5706 Porifera round yellow white\n",
"5707 Porifera sifon\n",
"5708 Porifera siphon\n",
"5709 Porifera smal percen whiteyellow round\n",
"5710 Porifera smal white\n",
"5711 porifera small\n",
"5712 Porifera small\n",
"5713 Porifera small green\n",
"5714 Porifera small antho like\n",
"5715 Porifera small apricot\n",
"5716 Porifera small black\n",
"5717 Porifera small branched\n",
"5719 Porifera small brown\n",
"5720 Porifera small brown round\n",
"5721 Porifera small buried\n",
"5723 Porifera small Density white\n",
"5724 Porifera small dirty\n",
"5725 Porifera small dirtyyellow round\n",
"5726 Porifera small fingerbøl\n",
"5727 Porifera small fishcake\n",
"5728 Porifera small flower\n",
"5729 Porifera small funnel\n",
"5730 Porifera small green\n",
"5731 Porifera small green stem\n",
"5732 Porifera small grey\n",
"5733 Porifera small grey round\n",
"5734 Porifera small irregular\n",
"5735 Porifera small mint green\n",
"5737 Porifera small orange\n",
"5738 Porifera small orange round\n",
"5740 Porifera small pale round\n",
"5741 Porifera small\n",
"5742 Porifera small Percent\n",
"5743 Porifera small white\n",
"5744 Porifera small white irreg\n",
"5745 Porifera small whiteyellow round\n",
"5746 Porifera small white\n",
"5747 Porifera small piggsopp\n",
"5748 Porifera small pink\n",
"5749 Porifera small pink round\n",
"5750 Porifera small red\n",
"5751 Porifera small round\n",
"5752 Porifera small round long siphon\n",
"5753 Porifera small roundiky\n",
"5754 Porifera small round white\n",
"5755 Porifera small small\n",
"5756 Porifera smalliky\n",
"5757 porifera small stalk\n",
"5758 Porifera small stalked\n",
"5759 Porifera small stalked urne\n",
"5760 Porifera small sycon\n",
"5761 Porifera small trakt\n",
"5762 porifera small transparent\n",
"5764 Porifera small urne green\n",
"5765 Porifera small urne pink\n",
"5766 Porifera small var\n",
"5767 Porifera small var\n",
"5768 Porifera small varia\n",
"5769 Porifera small varia\n",
"5770 Porifera small varia\n",
"5771 Porifera small varia\n",
"5772 Porifera small varia\n",
"5773 porifera small white\n",
"5774 Porifera small white\n",
"5775 Porifera small white bat\n",
"5776 Porifera small white irreg\n",
"5777 Porifera small white\n",
"5778 Porifera small white Spiky\n",
"5779 Porifera small white stalked\n",
"5780 Porifera small white baseball\n",
"5781 Porifera small white branched\n",
"5782 Porifera small white cup cake\n",
"5783 Porifera small white cupcake\n",
"5784 Porifera small white erect\n",
"5785 Porifera small white fan shaped\n",
"5786 Porifera small white irreg\n",
"5787 Porifera small white irregular\n",
"5788 Porifera small white on stalk\n",
"5789 Porifera small white round\n",
"5790 Porifera small white round big osculi\n",
"5791 Porifera small white round big siphon\n",
"5792 Porifera small white round centarl operculum\n",
"5793 Porifera small white round central operculum\n",
"5797 Porifera small white round dirty but celan aro...\n",
"5798 Porifera small white roundiky\n",
"5799 Porifera small white round stalked\n",
"5800 Porifera small white round sun flower\n",
"5801 Porifera small white round trumpet\n",
"5802 Porifera small white round vindu\n",
"5803 Porifera small white round with handle\n",
"5804 Porifera small white round with hole on top\n",
"5808 Porifera small white stalk\n",
"5809 Porifera small white trompet\n",
"5810 Porifera small white\n",
"5811 Porifera small whitedirty round\n",
"5812 Porifera small whiteyellow\n",
"5813 Porifera small whiteyellow irreg\n",
"5814 Porifera small whiteyellow round\n",
"5815 Porifera small whiteyellow round many siphones\n",
"5816 Porifera small whiteyellow round sentral osculi\n",
"5817 Porifera small whiteyellow round vindu\n",
"5818 Porifera small with siphon\n",
"5819 porifera small yellow\n",
"5820 Porifera small yellow\n",
"5821 Porifera small yellow-brown\n",
"5822 Porifera small yellow large siphons\n",
"5824 Porifera small yellow erect\n",
"5825 Porifera small yellow fan\n",
"5826 porifera small yellow green\n",
"5827 Porifera small yellow ireg\n",
"5828 Porifera small yellow irreg\n",
"5829 Porifera small yellow round\n",
"5830 Porifera small yellow round big pores\n",
"5831 Porifera small yellow round central osculi\n",
"5833 Porifera small yellow round stalked\n",
"5834 Porifera small yellow round with stalk\n",
"5836 Porifera small yellowiky\n",
"5838 Porifera small yellowgreen round\n",
"5839 Porifera small yellowvirreg\n",
"5841 Porifera small\n",
"5843 Porifera small coral\n",
"5844 Porifera small coral\n",
"5845 Porifera small green\n",
"5846 Porifera small irregular\n",
"5847 Porifera small irregular green\n",
"5848 Porifera small medium round\n",
"5849 Porifera small orange\n",
"5850 Porifera small pink\n",
"5851 Porifera small red\n",
"5852 Porifera small round\n",
"5853 Porifera small varia\n",
"5854 Porifera small varia\n",
"5855 Porifera small various\n",
"5856 Porifera small whiite\n",
"5857 Porifera small white\n",
"5858 Porifera small white\n",
"5859 Porifera small white\n",
"5860 Porifera small white cup cake\n",
"5861 Porifera small white Density\n",
"5862 Porifera small white irreg\n",
"5863 Porifera small white\n",
"5864 Porifera small white round\n",
"5866 Porifera small white round stalked\n",
"5867 Porifera small whiteyellow\n",
"5868 Porifera small whiteyellow round\n",
"5869 Porifera small whte\n",
"5870 Porifera small yelllow\n",
"5871 Porifera small yellow\n",
"5872 Porifera small yellow irreg\n",
"5873 Porifera small yellow\n",
"5874 Porifera small yellow round\n",
"5875 Porifera small yellowbrown\n",
"5876 Porifera smallwhite\n",
"5877 Porifera smallyellow\n",
"5878 Porifera smallmedium white\n",
"5879 Porifera smal l white\n",
"5880 porifera solitary white\n",
"5881 Poriferaikes\n",
"5882 Poriferaikey\n",
"5883 Porifera Spikey white\n",
"5884 Poriferaiky round small\n",
"5885 Porifera stalk\n",
"5886 porifera stalked\n",
"5887 Porifera stalked\n",
"5888 Porifera stalked bat\n",
"5891 Porifera stalked fan shaped\n",
"5892 Porifera stem tall\n",
"5893 Porifera stick\n",
"5894 Porifera stilk\n",
"5895 Porifera stilket cup\n",
"5896 Porifera stilket urne\n",
"5897 Porifera stlked parabol\n",
"5900 Porifera string yellow\n",
"5901 porifera sugekopp\n",
"5902 Porifera sugekopp\n",
"5903 POrifera sugekopp\n",
"5904 Porifera sulphur-yellow encrusting)\n",
"5905 Porifera sulphur yellow big\n",
"5906 porifera sulphur yellow encrusting\n",
"5907 Porifera sulphur yellow encrusting\n",
"5909 Porifera tall irregular yellowonge)\n",
"5910 Porifera tall kremmerhus\n",
"5911 Porifera tennisball\n",
"5912 Porifera thin branched\n",
"5913 Porifera thread like\n",
"5914 Porifera toiletbrush\n",
"5915 Porifera transparent bat\n",
"5916 Porifera transparent small\n",
"5917 Porifera tree like\n",
"5918 Porifera tube\n",
"5919 Porifera tube like\n",
"5920 Porifera tube like hairy\n",
"5921 Porifera Unregular papillae\n",
"5923 Porifera urn colony\n",
"5926 Porifera var\n",
"5927 Porifera var medium\n",
"5928 Porifera var\n",
"5929 Porifera var medium\n",
"5930 Porifera var small\n",
"5931 Porifera var small\n",
"5932 Porifera var small\n",
"5933 Porifera var small on hyas\n",
"5934 Porifera var small\n",
"5935 Porifera var small\n",
"5936 Porifera var smalll\n",
"5937 Porifera varia\n",
"5938 Porifera varia\n",
"5939 Porifera varia medium\n",
"5940 Porifera varia meduim\n",
"5941 Porifera varia small\n",
"5942 Porifera varia small\n",
"5943 Porifera varia small S\n",
"5944 Porifera varia small\n",
"5945 Porifera varios large\n",
"5946 Porifera various\n",
"5947 Porifera various brown\n",
"5948 Porifera various grey\n",
"5949 Porifera various on rock\n",
"5950 Porifera various small\n",
"5951 Porifera various white\n",
"5952 Porifera varius white\n",
"5953 Porifera vedkubbe\n",
"5954 Porifera violet\n",
"5955 Porifera whit\n",
"5956 porifera white\n",
"5957 Porifera white\n",
"5958 Porifera white antho like\n",
"5959 Porifera white irreg medium\n",
"5960 Porifera white medium round\n",
"5961 Porifera white small\n",
"5963 Porifera white bat\n",
"5964 Porifera white bat shaped\n",
"5965 Porifera white big\n",
"5966 Porifera white big fanshaped\n",
"5967 Porifera white big irregular\n",
"5968 Porifera white big urne\n",
"5969 Porifera white branched\n",
"5970 Porifera white branched medium\n",
"5971 porifera white bush\n",
"5972 Porifera white bush\n",
"5975 Porifera white coral\n",
"5976 Porifera white dirty small\n",
"5977 Porifera white eggmass\n",
"5978 Porifera white encrusting\n",
"5979 Porifera white erect\n",
"5980 Porifera white fan\n",
"5981 porifera white fan large\n",
"5982 Porifera white fan shape\n",
"5983 porifera white fan shaped\n",
"5984 Porifera white fan shaped\n",
"5985 Porifera White fan shaped\n",
"5987 Porifera white fanshaped\n",
"5988 Porifera white fanshaped small\n",
"5989 Porifera white flake\n",
"5990 Porifera white fragment\n",
"5991 Porifera white frynsete large\n",
"5992 Porifera white golfonge)\n",
"5993 Porifera white golfball\n",
"5994 Porifera white ireg medium\n",
"5995 Porifera white irreg\n",
"5996 Porifera white irreg big\n",
"5997 Porifera white irreg large\n",
"5998 Porifera white irreg mediium\n",
"5999 Porifera white irreg medium\n",
"6000 Porifera white irreg MEDIUM\n",
"6001 Porifera white irreg smal l\n",
"6002 Porifera white irreg small\n",
"6003 Porifera white irreg small\n",
"6004 Porifera white irreg small\n",
"6006 Porifera white irregular\n",
"6007 porifera white irregular large\n",
"6008 Porifera white irregular large\n",
"6009 Porifera white irregular medium\n",
"6010 Porifera white irregular small\n",
"6011 Porifera white irresular\n",
"6012 Porifera white irresular erect\n",
"6013 Porifera white irresular small\n",
"6014 Porifera white large\n",
"6015 Porifera white large ireg\n",
"6018 Porifera white large fan shape\n",
"6019 Porifera white large fan shaped\n",
"6020 Porifera white large flat\n",
"6021 Porifera white large irreg\n",
"6022 Porifera white large network\n",
"6026 Porifera white long\n",
"6027 Porifera white mall\n",
"6028 Porifera white medium\n",
"6029 Porifera white medium fan shaped\n",
"6030 Porifera white medium\n",
"6036 Porifera white medium fan\n",
"6037 Porifera white medium fan shaped\n",
"6038 Porifera white medium iireg\n",
"6039 Porifera white medium ireg\n",
"6040 Porifera white medium irreg\n",
"6041 Porifera white medium irreg fan shape\n",
"6042 Porifera white medium irreg mycale like\n",
"6044 Porifera white medium on boulder\n",
"6045 Porifera white medium round\n",
"6046 Porifera white mediumiky\n",
"6047 Porifera white medium urn\n",
"6048 Porifera white medium urne shaped\n",
"6052 Porifera white mushroom\n",
"6053 porifera white round\n",
"6054 Porifera white round\n",
"6055 Porifera white round medium\n",
"6056 Porifera white round mushroom like\n",
"6057 Porifera white round on stalk\n",
"6058 Porifera white round small\n",
"6059 Porifera white siphon\n",
"6060 porifera white small\n",
"6061 Porifera white small\n",
"6063 Porifera white small\n",
"6064 Porifera white small banched\n",
"6065 Porifera white small bat shaped on rock\n",
"6066 Porifera white small big pores\n",
"6067 Porifera white small big siphon\n",
"6068 Porifera white small branched\n",
"6069 Porifera white small calcerous\n",
"6070 Porifera white small central operculum\n",
"6074 Porifera white small cup cake\n",
"6075 Porifera white small cupcake\n",
"6076 Porifera white small\n",
"6077 Porifera white small erect\n",
"6078 Porifera white small fan\n",
"6079 Porifera white small finger\n",
"6080 Porifera white small ireg\n",
"6081 Porifera white small irreg\n",
"6082 Porifera white small irregular\n",
"6083 Porifera white small longikes\n",
"6084 Porifera white small mine\n",
"6085 Porifera white small oneike\n",
"6086 Porifera white small age\n",
"6087 Porifera white small round\n",
"6088 Porifera white smalliky\n",
"6089 Porifera white smalliny\n",
"6090 Porifera white small stalk\n",
"6091 Porifera white small stalked\n",
"6092 Porifera white small stalked cup\n",
"6093 Porifera white small standing flat\n",
"6094 Porifera white small three siphons\n",
"6095 Porifera white small tube shaped\n",
"6096 Porifera white small urne shaped\n",
"6097 Porifera white small\n",
"6101 Porifera whiteiky\n",
"6102 Porifera whiteiky elongated\n",
"6103 porifera white stalk\n",
"6104 Porifera white stalk\n",
"6105 Porifera white stalked\n",
"6106 Porifera white stalked small\n",
"6107 Porifera white stalked thin\n",
"6109 Porifera white structure lace-like small round\n",
"6110 Porifera white transparent\n",
"6111 Porifera white transparent small\n",
"6112 Porifera white unidentified\n",
"6113 Porifera white urne\n",
"6114 Porifera white varia\n",
"6115 Porifera white various\n",
"6116 porifera white with several octulie\n",
"6117 porifera white yellow round flat\n",
"6125 Porifera whitedirty\n",
"6126 Porifera whitedirty big\n",
"6127 Porifera whitedirty big with Aplysilla\n",
"6128 Porifera whitedirty irreg small\n",
"6129 Porifera whitedirty large\n",
"6130 Porifera whitedirty medium\n",
"6131 Porifera whitedirty small\n",
"6133 Porifera whitegrey\n",
"6134 Porifera whitegrey big\n",
"6135 Porifera whitegrey medium\n",
"6136 Porifera whitegrey round small\n",
"6137 Porifera whitegrey small\n",
"6138 Porifera whiteirreg medium\n",
"6139 Porifera whiteround medium\n",
"6140 Porifera whitesmall\n",
"6141 Porifera whitey smalll\n",
"6142 Porifera whiteyellow\n",
"6143 Porifera whiteyellow large\n",
"6144 Porifera whiteyellow big\n",
"6146 Porifera whiteyellow branched\n",
"6147 Porifera whiteyellow branched rootlike\n",
"6148 Porifera whiteyellow dirty\n",
"6149 Porifera whiteyellow fan shaped\n",
"6150 Porifera whiteyellow irreg\n",
"6151 Porifera whiteyellow irreg small\n",
"6152 Porifera whiteyellow irregular\n",
"6153 Porifera whiteyellow irregular small\n",
"6154 Porifera whiteyellow large\n",
"6155 Porifera whiteyellow large irregular\n",
"6156 Porifera whiteyellow mediuim round\n",
"6157 Porifera whiteyellow medium\n",
"6158 Porifera whiteyellow medium irreg\n",
"6159 Porifera whiteyellow medium round\n",
"6160 Porifera whiteyellow round\n",
"6161 Porifera whiteyellow round flat\n",
"6162 Porifera whiteyellow round medium\n",
"6163 Porifera whiteyellow round small\n",
"6164 Porifera whiteyellow small\n",
"6165 Porifera whiteyellow smalll\n",
"6166 Porifera whiteyellowiny\n",
"6167 Porifera whiteyellow stilk\n",
"6168 Porifera whiteyellow transparent medium\n",
"6169 Porifera whiteyelow large\n",
"6170 Porifera whitw medium\n",
"6171 Porifera whityellow irregular\n",
"6172 Porifera whityellow small\n",
"6174 Porifera window like\n",
"6175 Porifera withikes\n",
"6176 Porifera with warts\n",
"6177 Porifera wncruting small yellow\n",
"6178 Porifera yello small\n",
"6179 porifera yellow\n",
"6180 Porifera yellow\n",
"6181 POrifera yellow\n",
"6182 porifera yellow-bat\n",
"6183 Porifera yellow-bat\n",
"6184 Porifera yellow fan shaped\n",
"6185 Porifera yellow iky\n",
"6186 Porifera yellow baseball\n",
"6187 Porifera yellow baseballbat\n",
"6188 porifera yellow bat\n",
"6189 Porifera yellow bat\n",
"6191 Porifera yellow bat shaped-like (don't have a ...\n",
"6192 Porifera yellow big\n",
"6193 Porifera yellow big flak\n",
"6194 Porifera yellow branched\n",
"6195 Porifera yellow branched medium\n",
"6196 Porifera yellow brown\n",
"6197 Porifera yellow brown irregular\n",
"6198 Porifera yellow brown small\n",
"6200 Porifera yellow cidaris\n",
"6201 Porifera yellow cup\n",
"6202 Porifera yellow dirty\n",
"6203 Porifera yellow dirty round small\n",
"6204 Porifera yellow dirty small\n",
"6205 porifera yellow encrusting\n",
"6206 Porifera yellow encrusting\n",
"6207 Porifera yellow encrustingiky)\n",
"6208 Porifera yellow encrustingonge)\n",
"6211 Porifera yellow erect\n",
"6212 Porifera yellow fan shaped\n",
"6213 Porifera yellow irreg\n",
"6214 Porifera yellow irreg large\n",
"6215 Porifera yellow irreg medium\n",
"6216 Porifera yellow irreg small\n",
"6217 Porifera yellow irregular\n",
"6218 Porifera yellow irregular breadcrumonge?\n",
"6219 Porifera yellow large\n",
"6223 Porifera yellow large fan shaped\n",
"6224 Porifera yellow large urn\n",
"6225 Porifera yellow long stick\n",
"6226 porifera yellow medium\n",
"6227 Porifera yellow medium\n",
"6228 Porifera yellow medium ?\n",
"6229 Porifera yellow medium bowl\n",
"6230 Porifera yellow medium irreg\n",
"6232 Porifera yellow medium irregular\n",
"6233 Porifera yellow medium round\n",
"6236 Porifera yellow medium urn shaped\n",
"6238 Porifera yellow mushroom\n",
"6239 Porifera yellow mycale like\n",
"6240 Porifera yellow pale small\n",
"6241 Porifera yellow polymastia like\n",
"6242 porifera yellow round\n",
"6243 Porifera yellow round\n",
"6244 Porifera yellow round\n",
"6245 Porifera yellow round medium\n",
"6246 Porifera yellow samll\n",
"6247 Porifera yellow siphon\n",
"6248 porifera yellow small\n",
"6249 Porifera yellow small\n",
"6250 Porifera Yellow small\n",
"6251 Porifera yellow small\n",
"6252 Porifera yellow small bat\n",
"6253 Porifera yellow small big osculi\n",
"6254 Porifera yellow small big siphon\n",
"6258 Porifera yellow small cup\n",
"6259 Porifera yellow small\n",
"6260 Porifera yellow small erect\n",
"6261 Porifera yellow small irreg\n",
"6262 Porifera yellow small lollypop\n",
"6263 Porifera yellow small mine\n",
"6264 Porifera yellow small on stem sycon\n",
"6265 Porifera yellow small on stilk\n",
"6266 Porifera yellow small polymastia\n",
"6267 Porifera yellow small polymastia like\n",
"6268 porifera yellow small round\n",
"6269 Porifera yellow small round\n",
"6270 Porifera yellow smalliky\n",
"6271 Porifera yellow small stalked\n",
"6272 Porifera yellow small trompet\n",
"6274 Porifera yellowiked small\n",
"6275 Porifera yellowikey\n",
"6276 Porifera yellowiky\n",
"6278 Porifera yellowonge encrusting on cobble)\n",
"6279 Porifera yellowonge with pores)\n",
"6280 Porifera yellowonge)\n",
"6281 Porifera yellow stalked\n",
"6283 Porifera yellow urne\n",
"6284 Porifera yellow urneformet\n",
"6285 Porifera yellow withines\n",
"6288 Porifera yellowbat\n",
"6292 Porifera yellowbrown\n",
"6293 Porifera yellowbrown axinella like\n",
"6294 Porifera yellowbrown Axinella like\n",
"6295 Porifera yellowbrown irreg\n",
"6296 Porifera yellowbrown irregular\n",
"6297 Porifera yellowbrown medium\n",
"6298 Porifera yellowbrown small\n",
"6299 Porifera Yellowbrownish(mycale like)\n",
"6300 Porifera yellowdirty\n",
"6301 Porifera yellowdirty medium\n",
"6302 Porifera yellowdirty small\n",
"6303 Porifera yellowgreen\n",
"6304 Porifera yellowgreen\n",
"6305 Porifera yellowgreen small\n",
"6306 Porifera yellowgreen trumpet\n",
"6307 Porifera yellowish round big\n",
"6308 Porifera yellowmedium\n",
"6309 Porifera yellwo small\n",
"6310 Porifera\n",
"6311 Porifera( brown small)\n",
"6312 Porifera(brown small)\n",
"6313 Porifera,\n",
"6314 Porifera, apricot\n",
"6316 Porifera, Bate\n",
"6317 Porifera, bateshaped\n",
"6318 Porifera, batsponge\n",
"6320 Porifera, dark encrusting\n",
"6321 Porifera, dark red incrusting\n",
"6322 Porifera, flat yellow\n",
"6323 Porifera, incrusting offwhite\n",
"6324 Porifera, incrusting white\n",
"6325 Porifera, incrusting yellow-offwhite\n",
"6326 Porifera, many osculi\n",
"6327 Porifera, Mycale-like\n",
"6328 Porifera, offwhite\n",
"6329 Porifera, offwhite incrusting\n",
"6330 Porifera, offwhite small\n",
"6331 Porifera, offwhite small nearly round\n",
"6332 Porifera, orange encrusting\n",
"6333 Porifera, orange incrusting\n",
"6334 Porifera, Polymastia-like yellow\n",
"6335 Porifera, red encrusting\n",
"6336 Porifera, small round\n",
"6337 Porifera, small various\n",
"6338 Porifera, small yellow\n",
"6339 Porifera, white\n",
"6340 Porifera, white encrusting\n",
"6341 Porifera, white incrusting\n",
"6342 Porifera, white small\n",
"6343 Porifera, yellow\n",
"6344 Porifera, yellow encrusting\n",
"6345 Porifera, yellow finger-shaped\n",
"6346 Porifera, yellow incrusting\n",
"6347 Porifera, yellow round\n",
"6348 Porifera, yellow small\n",
"6349 Porifera, yellow small round\n",
"6400 Porifera branched\n",
"6401 Porifera brown\n",
"6403 Porifera brown siphons\n",
"6409 Porifera fragment\n",
"6410 Porifera medium\n",
"6412 Porifera medium irreg\n",
"6413 Porifera medium round\n",
"6414 Porifera medium white\n",
"6415 Porifera medium white big hole\n",
"6416 Porifera medium white irreg\n",
"6417 Porifera medium white big hole\n",
"6420 Porifera medium white ireg\n",
"6421 Porifera medium white irreg\n",
"6422 Porifera medium white rounbd\n",
"6423 Porifera medium white round\n",
"6424 Porifera medium white large papillae\n",
"6425 Porifera medium yellow\n",
"6427 Porifera red\n",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment